	/* Reset CSS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        
/* Navigation Styles */
.navbar {
    background-color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.brand-name {
    font-weight: 700;
    font-size: 1.25rem;
    background: linear-gradient(to right, #e74c3c, #3498db);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);            
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 100;
    padding: 100;
}

.nav-item {
    margin-left: 20px;
    display: flex;        /* <--- ubah li jadi flex container */
    align-items: center;  /* <--- isi dalam li rata tengah */
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #2c8a4a;
}

.nav-link.active {
    color: #3498db;
    font-weight: 600;
}

.navbar-toggler {
    display: none;
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
}
        
@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        display: none;
        margin-top: 15px;
    }
    
    .nav-item {
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    .navbar-toggler {
        display: block;
        position: absolute;
        right: 15px;
        top: 15px;
    }
    
    .navbar-nav.active {
        display: flex;
    }
}

/* css/search-box.css */
/* Professional Search Box Styles */
.search-container {
    position: relative;
    margin-left: auto;
    margin-right: 20px;
    width: 680px;
    height: 40px;
    transition: all 0.3s ease;
}

.search-form {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 30px;
    padding: 5px;
    height: 100%;
    min-height: 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.search-form:focus-within {
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.2);
    border-color: #3498db;
    background: white;
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    height: 100%;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    outline: none;
    color: #333;
    border-radius: 30px 0 0 30px;
    line-height: normal;
}

.search-input::placeholder {
    color: #95a5a6;
    opacity: 1;
}

.search-button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border: none;
    cursor: pointer;
    padding: 0 15px;
    height: 100%;
    border-radius: 20px;
    color: white;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.search-button:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateY(-1px);
}

.search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.search-icon svg {
    width: 18px;
    height: 18px;
}

.search-text {
    display: inline-block;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 5px;
}

.search-result-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.2s;
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    border-left: 3px solid transparent;
}

.search-result-item:hover {
    background-color: #f8f9fa;
    color: #3498db;
    border-left-color: #3498db;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-highlight {
    font-weight: bold;
    background-color: #fff8c6;
    padding: 0 2px;
    border-radius: 2px;
}

.search-result-content {
    padding: 5px;
}

.search-result-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #1a0dab;
}

.search-result-content p {
    font-size: 0.9rem;
    color: #4d5156;
    margin-bottom: 5px;
    line-height: 1.4;
}

.search-result-url {
    color: #006621;
    font-size: 0.8rem;
    display: block;
    margin-top: 3px;
}

.search-loading {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    padding: 15px;
    text-align: center;
    margin-top: 5px;
}

.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.no-results {
    padding: 15px;
    color: #7f8c8d;
    text-align: center;
}

/* Search Suggestions */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1001;
    display: none;
    margin-top: -1px;
}

.suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.2s;
    color: #333;
    text-decoration: none;
    display: block;
}

.suggestion-item:hover, 
.suggestion-item.selected {
    background-color: #f5f5f5;
}

.suggestion-highlight {
    font-weight: bold;
    color: #3498db;
}

.search-pagination {
    margin-top: 20px;
    padding: 15px;
    border-top: 1px solid #eee;
    text-align: center;
}

.show-more-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 1280px) {
    .search-container {
        width: 630px;
    }
    
    .search-button {
        padding: 8px 10px;
    }
}

@media (max-width: 1024px) {
    .search-container {
        width: 420px;
		margin-left: 25px;
    }
}

@media (max-width: 912px) {
    .search-container {
        width: 350px;
        margin-left: 20px;
    }
}

@media (max-width: 853px) {
    .search-container {
        width: 315px;
        margin-left: 15px;
    }
}

@media (max-width: 820px) {
    .search-container {
        width: 278px;
        margin-left: 18px;
    }
}

@media (max-width: 768px) {
    .search-container {
        width: 100%;
        height: 40px;
        margin: 15px 0;
        margin-left: 10px;
        order: 3;
    }
    
    .search-form {
        border-radius: 5px;
        min-height: 40px;
    }
    
    .search-input {
        border-radius: 5px 0 0 5px;
    }
    
    .search-button {
        border-radius: 0 5px 5px 0;
    }
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 50px 0 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-bottom: 30px;
}

.footer-links li {
    margin: 0 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.copyright {
    color: #ecf0f1;
    font-size: 0.9rem;
}
        
        
        

        /* Button Styles */
        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            margin: 10px;
            transition: all 0.3s;
        }

        .btn-primary {
            background-color: #3498db;
            color: white;
        }

        .btn-primary:hover {
            background-color: #2980b9;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Contact Page Styles */
        .contact-header {
            text-align: center;
            padding: 50px 0 30px;
        }

        .contact-header h1 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .contact-header p {
            color: #7f8c8d;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .contact-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin: 50px 0;
        }

        .contact-info {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .contact-info h2 {
            color: #3498db;
            margin-bottom: 30px;
            font-size: 1.8rem;
            position: relative;
            padding-bottom: 15px;
        }

        .contact-info h2:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, #e74c3c, #3498db);
            border-radius: 3px;
        }

        .info-item {
            display: flex;
            margin-bottom: 25px;
            align-items: flex-start;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: #e3f2fd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: #3498db;
            font-size: 1.2rem;
        }

        .info-content h4 {
            color: #2c3e50;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .info-content p, .info-content a {
            color: #6c757d;
            text-decoration: none;
            transition: color 0.3s;
        }

        .info-content a:hover {
            color: #3498db;
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #2c3e50;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: #3498db;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            background-color: #2980b9;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .map-container {
            margin: 50px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .map-container iframe {
            width: 100%;
            height: 400px;
            border: none;
        }

        /* FAQ Section */
        .faq-section {
            margin: 60px 0;
        }

        .faq-section h2 {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 40px;
            font-size: 1.8rem;
        }

        .faq-item {
            background: white;
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            background: #f8f9fa;
            color: #2c3e50;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .faq-question:hover {
            background: #e9ecef;
        }

        .faq-question:after {
            content: "+";
            font-size: 1.5rem;
            color: #3498db;
        }

        .faq-question.active:after {
            content: "-";
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .faq-answer.show {
            padding: 20px;
            max-height: 500px;
        }


        /* Responsive Design */
        @media (max-width: 992px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .map-container iframe {
                height: 350px;
            }
        }

        @media (max-width: 768px) {
            .contact-header h1 {
                font-size: 2rem;
            }
            
            .contact-info, .contact-form {
                padding: 30px 20px;
            }
            
            .info-item {
                flex-direction: column;
            }
            
            .info-icon {
                margin-bottom: 15px;
            }
        }

		input:invalid, textarea:invalid {
    		border-color: #e74c3c;
		}

		input:valid, textarea:valid {
    		border-color: #2ecc71;
		}

		.loading-spinner-2 {
    		display: inline-block;
    		width: 20px;
    		height: 20px;
    		border: 3px solid rgba(255,255,255,.3);
    		border-radius: 50%;
    		border-top-color: #fff;
    		animation: spin 1s ease-in-out infinite;
    		margin-left: 10px;
		}

		@keyframes spin {
    		to { transform: rotate(360deg); }
		}

		.hidden {
    		display: none !important;
		}

		.error-message {
    		color: #e74c3c;
    		font-size: 0.8rem;
    		margin-top: 5px;
		}
		.form-status {
    		padding: 15px;
    		margin: 20px 0;
    		border-radius: 5px;
		}
		.form-status.success {
    		background-color: #d4edda;
    		color: #155724;
		}
		.form-status.error {
    		background-color: #f8d7da;
    		color: #721c24;
		}

		@media (max-width: 480px) {
  			.contact-form {
    			padding: 20px 15px;
  			}
  			.submit-btn {
    			width: 100%;
  			}
		}
		
		
		
        .privacy-section h4 {
            color: #e74c3c;
            margin: 20px 0 10px;
            font-size: 1.2rem;
        }
        
        .data-flow {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            border-left: 4px solid #3498db;
        }
        
        .data-flow ol {
            margin-left: 20px;
        }
        
        .compliance-badge {
            display: inline-block;
            background: #2c3e50;
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            margin-right: 10px;
            margin-bottom: 10px;
        }
        
        .policy-updates {
            background: #fff8e1;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            border-left: 4px solid #ffc107;
        }
        
        /* Header Styles */
        .privacy-header {
            text-align: center;
            padding: 60px 0;
            background: linear-gradient(135deg, #3498db, #e74c3c);
            color: white;
            margin-bottom: 40px;
        }
        
        .privacy-header h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .privacy-header p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Privacy Content */
        .privacy-container {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0,0,0,0.05);
            margin-bottom: 40px;
        }
        
        .privacy-section {
            margin-bottom: 40px;
        }
        
        .privacy-section h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 1.8rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .privacy-section h2:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, #e74c3c, #3498db);
        }
        
        .privacy-section h3 {
            color: #3498db;
            margin: 25px 0 15px;
            font-size: 1.4rem;
        }
        
        .privacy-section p, .privacy-section ul {
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        
        .privacy-section ul {
            margin-left: 30px;
        }
        
        .privacy-section li {
            margin-bottom: 8px;
        }
        
        .highlight-box {
            background-color: #f0f8ff;
            border-left: 4px solid #3498db;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .privacy-header h1 {
                font-size: 2rem;
            }
            
            .privacy-container {
                padding: 30px 20px;
            }
            
            .privacy-section h2 {
                font-size: 1.5rem;
            }        
        }
        
        
       /* Header Styles */
        .terms-header {
            text-align: center;
            padding: 60px 0;
            background: linear-gradient(135deg, #3498db, #e74c3c);
            color: white;
            margin-bottom: 40px;
        }
        
        .terms-header h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .terms-header p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Terms Content */
        .terms-container {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0,0,0,0.05);
            margin-bottom: 40px;
            counter-reset: section;
        }
        
        .terms-section {
            margin-bottom: 40px;
        }
        
        .terms-section h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 1.8rem;
            position: relative;
            padding-bottom: 10px;
            counter-increment: section;
            counter-reset: subsection;
        }
        
        .terms-section h2:before {
            content: counter(section) ". ";
            color: #e74c3c;
        }
        
        .terms-section h2:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, #e74c3c, #3498db);
        }
        
        .terms-section h3 {
            color: #3498db;
            margin: 25px 0 15px;
            font-size: 1.4rem;
            counter-increment: subsection;
        }
        
        .terms-section h3:before {
            content: counter(section) "." counter(subsection) " ";
        }
        
        .terms-section p, .terms-section ul, .terms-section ol {
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        
        .terms-section ul, .terms-section ol {
            margin-left: 30px;
        }
        
        .terms-section li {
            margin-bottom: 8px;
        }
        
        .warning-box {
            background-color: #fff8e1;
            border-left: 4px solid #ffc107;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .terms-header h1 {
                font-size: 2rem;
            }
            
            .terms-container {
                padding: 30px 20px;
            }
            
            .terms-section h2 {
                font-size: 1.5rem;
            }
        }
        

    	/* Tambahkan style untuk tabel */
    	.terms-section table {
        	width: 100%;
        	border-collapse: collapse;
        	margin: 15px 0;
        	font-size: 0.95rem;
    	}
    
    	.terms-section th, .terms-section td {
        	padding: 12px;
        	text-align: left;
        	border: 1px solid #ddd;
    	}
    
    	.terms-section tr:nth-child(even) {
        	background-color: #f9f9f9;
    	}
    
    	.terms-section th {
        	background-color: #f1f1f1;
        	font-weight: 600;
    	}
    	
    	
    	
        /* Header Styles tentang kami */
        .about-header {
            text-align: center;
            padding: 60px 0 40px;
            background: linear-gradient(135deg, #3498db, #e74c3c);
            color: white;
            border-radius: 0 0 20px 20px;
            margin-bottom: 40px;
        }
        
        .about-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
        }
        
        .about-header p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Section Styles */
        .about-section {
            display: flex;
            align-items: center;
            margin-bottom: 50px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            overflow: hidden;
        }
        
        .about-image {
            flex: 1;
            min-height: 300px;
            background-size: cover;
            background-position: center;
        }
        
        .about-content {
            flex: 1;
            padding: 40px;
        }
        
        .about-content h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 1.8rem;
            position: relative;
        }
        
        .about-content h2:after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, #e74c3c, #3498db);
        }
        
        /* Visi Misi */
        .vision-mission {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin: 50px 0;
        }
        
        .vm-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-top: 4px solid #3498db;
        }
        
        .vm-card h3 {
            color: #e74c3c;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        /* Team Section */
        .team-section {
            margin: 60px 0;
            text-align: center;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .team-member {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
        }
        
        .member-photo {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 5px solid #f1f1f1;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .about-section {
                flex-direction: column;
            }
            
            .about-image {
                width: 100%;
                min-height: 200px;
            }
            
            .vision-mission {
                grid-template-columns: 1fr;
            }
        }
        
    /* Styles untuk Layanan Kami */
    .services-section {
        padding: 60px 0;
        background-color: #fff;
    }
    
    .section-title {
        text-align: center;
        color: #2c3e50;
        font-size: 2rem;
        margin-bottom: 15px;
        position: relative;
    }
    
    .section-title:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(to right, #e74c3c, #3498db);
    }
    
    .section-subtitle {
        text-align: center;
        color: #7f8c8d;
        max-width: 700px;
        margin: 0 auto 40px;
        font-size: 1.1rem;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .service-card {
        background: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        text-align: center;
        transition: transform 0.3s;
        border-top: 3px solid #3498db;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-icon img {
        width: 100%;
        height: auto;
    }
    
    .service-card h3 {
        color: #3498db;
        margin-bottom: 15px;
        font-size: 1.3rem;
    }
    
    @media (max-width: 768px) {
        .services-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .service-card {
            padding: 25px 20px;
        }
        
        .section-title {
            font-size: 1.8rem;
        }
    }
    
    
    





/* Container untuk meta dan share */
.meta-share-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    flex-wrap: wrap;
    width: 100%;
}

.meta {
    color: #7f8c8d;
    font-size: 14px;
}

/* Default: sembunyikan tombol share (mobile & tablet) */
.share-article-container {
    display: none;
}

/* Tampilkan hanya di desktop (&#8805;992px) */
@media (min-width: 992px) {
    .share-article-container {
        display: flex;
        align-items: center;
    }
}

.share-label {
    margin-right: 12px;
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 500;
}

/* Tombol Share */
.share-container {
    display: inline-block;
    position: relative;
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 30px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: none;
    outline: none;
    padding: 0;
}

.share-button:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-button img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.share-button.active img {
    transform: rotate(45deg);
}

/* Dropdown Share */
.share-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    transform: scale(0.95);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 420px;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e0e0e0;
}

.share-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.share-dropdown h3 {
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    text-align: center;
    font-weight: 600;
}

.share-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 5px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f8f9fa;
    border: 1px solid transparent;
    min-width: 60px;
}

.share-option:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #e9ecef;
}

.share-option img {
    width: 22px;
    height: 22px;
    margin-bottom: 6px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.share-option:hover img {
    transform: scale(1.15);
}

.share-option span {
    font-size: 11px;
    color: #2c3e50;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.copy-link-container {
    grid-column: 2 / 5;
    display: flex;
    justify-content: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.copy-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #f8f9fa;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: auto;
    min-width: 140px;
    border: 1px solid #e9ecef;
}

.copy-link:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.copy-link img {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    object-fit: contain;
}

.copy-link span {
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
}

/* Notifikasi */
.share-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #2ecc71;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: none;
    animation: fadeIn 0.5s, fadeOut 0.5s 2.5s forwards;
    z-index: 1000;
    font-size: 14px;
    font-weight: 500;
}

.share-notification img {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    object-fit: contain;
}

@keyframes fadeIn {
    from { opacity: 0; bottom: 0; }
    to { opacity: 1; bottom: 20px; }
}

@keyframes fadeOut {
    from { opacity: 1; bottom: 20px; }
    to { opacity: 0; bottom: 0; }
}

/* Responsif */
@media (max-width: 768px) {
    .share-dropdown {
        width: 360px;
        right: -20px;
        padding: 20px;
    }

    .share-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .copy-link-container {
        grid-column: 1 / -1;
    }

    .meta-share-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .share-dropdown {
        width: 320px;
        right: -40px;
        padding: 15px;
    }

    .share-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .meta-share-container {
        align-items: center;
    }

    .share-option {
        padding: 8px 4px;
    }

    .share-option img {
        width: 20px;
        height: 20px;
    }

    .share-option span {
        font-size: 10px;
    }

    .copy-link {
        min-width: 120px;
        padding: 8px 16px;
    }

    .copy-link span {
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .share-dropdown {
        width: 300px;
        right: -30px;
    }

    .share-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Honeypot field styling */
.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}