
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #0A1A44;
            background-color: #a8c5d3;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header */
        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #EAE9E7;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(55, 53, 47, 0.05);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #76C7F0;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo:before {
            content: '🏠';
            font-size: 24px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 32px;
        }

        .nav-link {
            text-decoration: none;
            color: #9B9A97;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 20px;
        }

        .nav-link:hover {
            color: #76C7F0;
            background: rgba(106, 13, 173, 0.1);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #76C7F0;
        }

        /* Hero Section */
        .hero {
            padding: 180px 0 120px;
            background: linear-gradient(135deg, #a8c5d3 0%, #c2e6f8 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(106, 13, 173, 0.03) 0%, transparent 70%);
            animation: gentleFloat 15s ease-in-out infinite;
        }

        @keyframes gentleFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(1deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 56px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 24px;
            color: #0A1A44;
        }

        .hero p {
            font-size: 20px;
            color: #9B9A97;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            display: inline-block;
            padding: 16px 32px;
            background: #76C7F0;
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(106, 13, 173, 0.3);
        }

        .btn:hover {
            background: #CDB4DB;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(106, 13, 173, 0.4);
        }

        /* Section Styles */
        .section {
            padding: 100px 0;
        }

        .section-title {
            font-size: 42px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 16px;
            color: #0A1A44;
        }

        .section-subtitle {
            font-size: 18px;
            text-align: center;
            color: #9B9A97;
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* About Preview */
        .about-preview {
            background: #FFFFFF;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-text h3 {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #0A1A44;
        }

        .about-text p {
            color: #9B9A97;
            margin-bottom: 24px;
            font-size: 16px;
        }

        .about-features {
            list-style: none;
        }

        .about-features li {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            color: #0A1A44;
            font-size: 15px;
        }

        .about-features li:before {
            content: '💚';
            margin-right: 12px;
            font-size: 16px;
        }

        .community-stats {
            background: linear-gradient(135deg, #76C7F0 0%, #CDB4DB 100%);
            padding: 48px;
            border-radius: 20px;
            color: white;
            text-align: center;
        }

        .stat-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }

        .stat-item {
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .stat-number {
            font-size: 32px;
            font-weight: 700;
            color: #F0F8F6;
            display: block;
        }

        .stat-label {
            color: #E0F2E9;
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Why Choose Us */
        .why-choose-us {
            background: #a8c5d3;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }

        .feature-card {
            background: #FFFFFF;
            padding: 40px 32px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(55, 53, 47, 0.05);
            border: 1px solid #EAE9E7;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(55, 53, 47, 0.1);
            border-color: #76C7F0;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(106, 13, 173, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 32px;
        }

        .feature-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #0A1A44;
        }

        .feature-card p {
            color: #9B9A97;
            font-size: 15px;
        }

        /* Services */
        .services {
            background: #FFFFFF;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
            gap: 32px;
        }

        .service-category {
            background: #a8c5d3;
            padding: 36px;
            border-radius: 20px;
            border: 2px solid #EAE9E7;
            transition: all 0.3s ease;
        }

        .service-category:hover {
            border-color: #76C7F0;
            box-shadow: 0 8px 30px rgba(106, 13, 173, 0.1);
            transform: translateY(-4px);
        }

        .service-category h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 24px;
            color: #0A1A44;
            display: flex;
            align-items: center;
        }

        .service-category h3:before {
            content: '🤝';
            margin-right: 12px;
            font-size: 24px;
        }

        .service-list {
            list-style: none;
        }

        .service-list li {
            padding: 10px 0;
            color: #0A1A44;
            border-bottom: 1px solid #EAE9E7;
            font-size: 15px;
            transition: color 0.2s ease;
        }

        .service-list li:last-child {
            border-bottom: none;
        }

        .service-list li:hover {
            color: #76C7F0;
        }

        /* Testimonials */
        .testimonials {
            background: linear-gradient(135deg, #c2e6f8 0%, #a8c5d3 100%);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .testimonial-card {
            background: #FFFFFF;
            padding: 36px;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(55, 53, 47, 0.08);
            position: relative;
            border: 1px solid #EAE9E7;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 60px;
            color: #76C7F0;
            font-family: serif;
            line-height: 1;
        }

        .testimonial-text {
            color: #0A1A44;
            margin-bottom: 24px;
            font-size: 16px;
            font-style: italic;
            line-height: 1.7;
        }

        .testimonial-author {
            font-weight: 600;
            color: #0A1A44;
        }

        .testimonial-role {
            color: #9B9A97;
            font-size: 14px;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #76C7F0, #D97706);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            margin-bottom: 16px;
        }

        /* FAQ */
        .faq {
            background: #FFFFFF;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #a8c5d3;
            margin-bottom: 20px;
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid #EAE9E7;
        }

        .faq-question {
            background: none;
            border: none;
            padding: 24px;
            width: 100%;
            text-align: left;
            font-size: 18px;
            font-weight: 600;
            color: #0A1A44;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(106, 13, 173, 0.05);
        }

        .faq-answer {
            padding: 0 24px 24px;
            color: #9B9A97;
            display: none;
            font-size: 16px;
        }

        .faq-answer.active {
            display: block;
        }

        /* Contact Form */
        .contact {
            background: linear-gradient(135deg, #c2e6f8 0%, #a8c5d3 100%);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: #FFFFFF;
            padding: 48px;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(55, 53, 47, 0.1);
            border: 1px solid #EAE9E7;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #0A1A44;
            font-size: 15px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #EAE9E7;
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #FFFFFF;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #76C7F0;
            box-shadow: 0 0 0 3px rgba(106, 13, 173, 0.1);
        }

        /* Footer */
        .footer {
            background: #0A1A44;
            color: #E0E0DC;
            padding: 80px 0 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-section h4 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #F0F8F6;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul li a {
            color: #9B9A97;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 15px;
        }

        .footer-section ul li a:hover {
            color: #F0F8F6;
        }

        .footer-bottom {
            border-top: 1px solid #4A4A45;
            padding-top: 32px;
            text-align: center;
            color: #9B9A97;
            font-size: 14px;
        }

        /* Popup Styles */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(55, 53, 47, 0.7);
            z-index: 2000;
            backdrop-filter: blur(5px);
        }

        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #FFFFFF;
            padding: 40px;
            border-radius: 20px;
            max-width: 650px;
            max-height: 80vh;
            overflow-y: auto;
            display: none;
            z-index: 2001;
            box-shadow: 0 20px 60px rgba(55, 53, 47, 0.3);
        }

        .popup h3 {
            margin-bottom: 20px;
            color: #0A1A44;
        }

        .popup-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #9B9A97;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .popup-close:hover {
            background: #F0F0EC;
            color: #0A1A44;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .checkbox-group input[type="checkbox"] {
            width: auto;
            border-radius: 4px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 40px;
            }

            .hero p {
                font-size: 18px;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .features-grid,
            .services-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 32px;
            }

            .contact-form {
                margin: 0 16px;
                padding: 32px 24px;
            }

            .stat-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Confirmation Messages */
        .confirmation {
            background: #10B981;
            color: white;
            padding: 16px;
            border-radius: 12px;
            margin-bottom: 24px;
            display: none;
            font-weight: 500;
        }

        .confirmation.error {
            background: #EF4444;
        }

        /* Community Badge */
        .community-badge {
            display: inline-block;
            background: linear-gradient(135deg, #D97706, #F59E0B);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }