
        :root {
            --primary-color: #1a365d;
            --secondary-color: #ffd700;
            --text-dark: #333;
            --text-light: #666;
            --bg-light: #f8f9fa;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* Header */
        header {
            background: var(--primary-color);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            display: flex;
            flex-direction: column;
            font-weight: bold;
        }
        .logo h1 {
            font-size: 1.8rem;
        }
        .logo-tagline {
            font-size: 0.85rem;
            opacity: 0.9;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-menu a:hover {
            color: var(--secondary-color);
        }
        .header-cta {
            background: var(--secondary-color);
            color: var(--primary-color);
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            font-weight: bold;
            text-decoration: none;
            transition: transform 0.3s ease;
        }
        .header-cta:hover {
            transform: translateY(-2px);
        }
        /* Hero */
        .hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, #2d5aa0 100%);
            color: white;
            padding: 160px 0 120px;
            text-align: center;
        }
        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        .hero-subtitle {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 3rem;
            opacity: 0.95;
        }
        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }
        .highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            font-size: 1.1rem;
            padding: 1.5rem;
            background: rgba(255,255,255,0.1);
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }
        .hero-ctas {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 4rem;
            flex-wrap: wrap;
        }
        .btn-primary {
            background: white;
            color: var(--primary-color);
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255,255,255,0.3);
        }
        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        .btn-secondary:hover {
            background: white;
            color: var(--primary-color);
        }
        /* Sections */
        section {
            padding: 90px 0;
        }
        .section-title {
            text-align: center;
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 3rem;
            color: var(--primary-color);
        }
        /* About */
        .about-section {
            background: var(--bg-light);
        }
        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .mission-vision {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }
        @media (max-width: 768px) {
            .mission-vision {
                grid-template-columns: 1fr;
            }
        }
        /* Why Choose */
        .why-choose {
            background: var(--primary-color);
            color: white;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .feature-card {
            text-align: center;
            padding: 2rem;
        }
        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2rem;
        }
        .service-category {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .service-category:hover {
            transform: translateY(-5px);
        }
        .service-category h4 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }
        .service-list {
            list-style: none;
        }
        .service-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid #eee;
            transition: color 0.3s;
        }
        .service-list li:hover {
            color: var(--primary-color);
        }
        /* Testimonials */
        .testimonials-section {
            background: var(--bg-light);
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }
        .testimonial {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
            font-style: italic;
        }
        .stars {
            color: var(--secondary-color);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        .testimonial-author {
            font-weight: bold;
            color: var(--primary-color);
            margin-top: 1rem;
        }
        /* FAQ */
        .faq-item {
            margin-bottom: 1.5rem;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .faq-question {
            padding: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }
        .faq-question:hover {
            background: var(--bg-light);
        }
        .faq-answer {
            padding: 0 1.5rem 1.5rem;
            display: none;
            animation: fadeIn 0.3s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        /* Forms */
        .form-container {
            max-width: 600px;
            margin: 0 auto;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #eee;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        .form-checkbox {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
        }
        .confirmation-msg {
            display: none;
            text-align: center;
            background: #d4edda;
            color: #155724;
            padding: 2rem;
            border-radius: 12px;
            font-size: 1.2rem;
            margin-top: 2rem;
        }
        /* Privacy & Terms */
        .policy-section {
            background: var(--bg-light);
            text-align: center;
        }
        /* Footer */
        footer {
            background: var(--primary-color);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
        }
        .footer-links a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 500;
        }
        .social-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            font-size: 1.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            opacity: 0.8;
        }
        /* Responsive */
        @media (max-width: 768px) {
            .header-inner {
                flex-direction: column;
                gap: 1rem;
            }
            .nav-menu {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            .hero-ctas {
                flex-direction: column;
                align-items: center;
            }
            .mission-vision {
                grid-template-columns: 1fr;
            }
        }
    