 :root {
            --primary: #2a52be;
            --secondary: #ff6b35;
            --accent: #00c6ad;
            --light: #f8f9fa;
            --dark: #212529;
            --success: #28a745;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f0f5ff;
            color: #333;
            line-height: 1.6;
        }
        
        /* Header Styles */
        .main-header {
            background: linear-gradient(135deg, var(--primary) 0%, #1a3a8f 100%);
            color: white;
            padding: 1.2rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .brand-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .brand-logo {
            height: 45px;
            border-radius: 8px;
            background: white;
            padding: 5px;
        }
        
        .brand-text {
            font-size: 1.8rem;
            font-weight: 700;
        }
        
        .brand-text span {
            color: var(--secondary);
        }
        
        /* Main Content */
        .page-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 2.5rem;
            position: relative;
            padding-bottom: 20px;
        }
        
        .page-title h1 {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .page-title p {
            font-size: 1.2rem;
            color: #555;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .page-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }
        
        /* FAQ Layout */
        .faq-container {
            display: flex;
            gap: 30px;
            margin-top: 20px;
        }
        
        /* Sidebar */
        .faq-sidebar {
            flex: 0 0 280px;
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            height: fit-content;
            position: sticky;
            top: 30px;
        }
        
        .sidebar-title {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
            font-weight: 600;
        }
        
        .category-list {
            list-style: none;
            padding: 0;
        }
        
        .category-item {
            margin-bottom: 12px;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .category-link {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            color: var(--dark);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            border-left: 3px solid transparent;
        }
        
        .category-link:hover, 
        .category-link.active {
            background: rgba(42, 82, 190, 0.08);
            color: var(--primary);
            border-left: 3px solid var(--primary);
        }
        
        .category-link i {
            margin-right: 10px;
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
        }
        
        /* FAQ Content */
        .faq-content {
            flex: 1;
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        
        .section-title {
            font-size: 1.6rem;
            color: var(--primary);
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f5ff;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .section-title i {
            color: var(--secondary);
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #e9ecef;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: var(--primary);
            box-shadow: 0 5px 15px rgba(42, 82, 190, 0.1);
        }
        
        .faq-question {
            padding: 20px 25px;
            background: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--dark);
            transition: background 0.3s ease;
        }
        
        .faq-question:hover {
            background: #f8f9ff;
        }
        
        .faq-question i {
            color: var(--primary);
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            background: #fbfdff;
            border-top: 1px dashed #e9ecef;
        }
        
        .faq-answer-content {
            padding: 25px 0;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        
        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, #f0f7ff 0%, #e3eeff 100%);
            border-radius: 15px;
            padding: 30px;
            margin-top: 40px;
            text-align: center;
            border: 1px solid #d0e0ff;
        }
        
        .contact-title {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .contact-description {
            margin-bottom: 25px;
            color: #555;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .contact-methods {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }
        
        .contact-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            width: 220px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        .contact-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .contact-card.whatsapp .contact-icon {
            color: #25D366;
        }
        
        .contact-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .contact-card p {
            margin-bottom: 15px;
            color: #666;
        }
        
        .contact-link {
            display: inline-block;
            padding: 8px 20px;
            background: var(--primary);
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.3s ease;
        }
        
        .contact-link:hover {
            background: #1a3a8f;
        }
        
        .contact-card.whatsapp .contact-link {
            background: #25D366;
        }
        
        .contact-card.whatsapp .contact-link:hover {
            background: #128C7E;
        }
        
        /* Footer */
        .main-footer {
            background: linear-gradient(135deg, #1a3a8f 0%, var(--primary) 100%);
            color: white;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-row {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-col {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-title {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .footer-links a i {
            color: var(--secondary);
            font-size: 0.9rem;
        }
        
        .contact-info p {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            color: #e0e0e0;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #ccc;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .faq-container {
                flex-direction: column;
            }
            
            .faq-sidebar {
                position: relative;
                top: 0;
            }
        }
        
        @media (max-width: 768px) {
            .page-title h1 {
                font-size: 2.2rem;
            }
            
            .contact-methods {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-card {
                width: 100%;
                max-width: 350px;
            }
        }
        
        @media (max-width: 576px) {
            .brand-text {
                font-size: 1.5rem;
            }
            
            .page-title h1 {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.4rem;
            }
        }