:root {
            --primary-color: #2d3e50;
            --secondary-color: #95a5a6;
            --accent-color: #e8b968;
            --light-gray: #f8f9fa;
            --dark-gray: #6c757d;
            --cream: #faf9f6;
            --sage: #9caf88;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Lato', sans-serif;
            font-weight: 300;
            line-height: 1.7;
            color: var(--primary-color);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 400;
            line-height: 1.3;
        }

        /* Navigation */
        .navbar {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            padding: 20px 0;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            z-index: 1000;
        }

        .navbar.scrolled {
            padding: 15px 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
        }

        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 500;
            color: var(--primary-color) !important;
            text-decoration: none;
        }

        .navbar-nav .nav-link {
            font-family: 'Lato', sans-serif;
            font-weight: 400;
            font-size: 15px;
            color: var(--primary-color) !important;
            margin: 0 20px;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            color: var(--sage) !important;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 1px;
            background: var(--sage);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(45, 62, 80, 0.7), rgba(45, 62, 80, 0.7)), 
                        url('https://images.unsplash.com/photo-1522881193457-37ae97c905bf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80');
            background-size: cover;
            background-position: center;
            overflow: hidden;
        }

        .hero-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero-subtitle {
            font-family: 'Lato', sans-serif;
            font-size: 18px;
            font-weight: 300;
            color: white;
            margin-bottom: 20px;
            letter-spacing: 2px;
            opacity: 0;
            animation: fadeInUp 1s ease 0.3s forwards;
        }

        .hero h1 {
            font-size: 4.5rem;
            font-weight: 400;
            color: white;
            margin-bottom: 30px;
            opacity: 0;
            animation: fadeInUp 1s ease 0.5s forwards;
        }

        .hero-tagline {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: 1.4rem;
            color: var(--accent-color);
            margin-bottom: 40px;
            opacity: 0;
            animation: fadeInUp 1s ease 0.7s forwards;
        }

        .hero-description {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin: 0 auto 50px;
            opacity: 0;
            animation: fadeInUp 1s ease 0.9s forwards;
        }

        .btn-elegant {
            background: transparent;
            border: 2px solid var(--accent-color);
            color: var(--accent-color);
            padding: 15px 40px;
            font-family: 'Lato', sans-serif;
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            opacity: 0;
            animation: fadeInUp 1s ease 1.1s forwards;
        }

        .btn-elegant:hover {
            background: var(--accent-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(232, 185, 104, 0.3);
        }

        /* Floating Elements */
        .floating-element {
            position: absolute;
            z-index: 1;
            opacity: 0.15;
        }

        .floating-element.shape-1 {
            top: 20%;
            left: 10%;
            width: 80px;
            height: 80px;
            border: 2px solid var(--accent-color);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        .floating-element.shape-2 {
            top: 60%;
            right: 15%;
            width: 60px;
            height: 60px;
            background-color: var(--sage);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite 1s;
        }

        .floating-element.shape-3 {
            bottom: 20%;
            left: 20%;
            width: 40px;
            height: 40px;
            border: 2px solid white;
            animation: float 10s ease-in-out infinite 0.5s;
        }

        .floating-element.shape-4 {
            top: 30%;
            right: 25%;
            width: 30px;
            height: 30px;
            background-color: white;
            animation: float 7s ease-in-out infinite 1.5s;
        }

        /* Section Styling */
        .section {
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .section-light {
            background: var(--cream);
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .section-subtitle {
            font-family: 'Lato', sans-serif;
            font-size: 14px;
            font-weight: 300;
            color: var(--dark-gray);
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 400;
            color: var(--primary-color);
            margin-bottom: 30px;
        }

        .contact-section-title {
            font-size: 3rem;
            font-weight: 400;
            color: #fff;
            margin-bottom: 30px;
        }

        .contact-section-description {
            font-size: 18px;
            color: #fff;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Background Pattern */
        .bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232d3e50' fill-rule='evenodd'/%3E%3C/svg%3E");
            z-index: 1;
        }

        /* About Section */
        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .about-text {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 40px;
            color: var(--dark-gray);
        }

        .approach-steps {
            margin-top: 80px;
        }

        .step {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 2;
        }

        .step-number {
            width: 60px;
            height: 60px;
            border: 2px solid var(--sage);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            color: var(--sage);
            background: white;
            position: relative;
            z-index: 2;
        }

        .step h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .step p {
            color: var(--dark-gray);
            max-width: 250px;
            margin: 0 auto;
        }

        /* Programs Section */
        .program-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .program-card {
            background: white;
            padding: 50px 40px;
            border-radius: 0;
            box-shadow: 0 5px 30px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.4s ease;
            border-top: 3px solid transparent;
            position: relative;
            z-index: 2;
            overflow: hidden;
        }

        .program-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(156, 175, 136, 0.1), transparent);
            transition: all 0.6s ease;
            z-index: 1;
        }

        .program-card:hover::before {
            left: 100%;
        }

        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.15);
            border-top-color: var(--sage);
        }

        .program-card h4 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            position: relative;
            z-index: 2;
        }

        .program-card p {
            color: var(--dark-gray);
            line-height: 1.7;
            position: relative;
            z-index: 2;
        }

        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 60px;
            margin-top: 60px;
        }

        .team-member {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .team-photo {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--sage), var(--accent-color));
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            position: relative;
            overflow: hidden;
        }

        .team-photo::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=776&q=80') center/cover;
            opacity: 0;
            transition: all 0.4s ease;
            border-radius: 50%;
        }

        .team-member:hover .team-photo::after {
            opacity: 0.9;
        }

        .team-member h4 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        .team-role {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            color: var(--sage);
            margin-bottom: 20px;
        }

        .team-description {
            color: var(--dark-gray);
            max-width: 250px;
            margin: 0 auto;
        }

        /* Why Choose Us */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            margin-top: 60px;
        }

        .feature {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            border: 2px solid var(--sage);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--sage);
            font-size: 1.5rem;
            transition: all 0.4s ease;
        }

        .feature:hover .feature-icon {
            background: var(--sage);
            color: white;
            transform: rotateY(180deg);
        }

        .feature h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .feature p {
            color: var(--dark-gray);
            max-width: 280px;
            margin: 0 auto;
        }

        /* Testimonials */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .testimonial {
            background: white;
            padding: 40px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.08);
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
        }

        .testimonial:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        .testimonial::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            color: var(--sage);
            opacity: 0.3;
            line-height: 1;
        }

        .testimonial-text {
            font-style: italic;
            color: var(--dark-gray);
            margin-bottom: 25px;
            padding-left: 20px;
        }

        .testimonial-author {
            color: var(--primary-color);
            font-weight: 500;
            margin-bottom: 5px;
        }

        .testimonial-role {
            color: var(--sage);
            font-size: 14px;
        }

        /* Next Steps */
        .steps-container {
            margin-top: 60px;
        }

        .next-step {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 2;
        }

        .next-step h4 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .next-step p {
            color: var(--dark-gray);
            max-width: 400px;
            margin: 0 auto;
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid rgba(0,0,0,0.1);
            padding: 30px 0;
            position: relative;
            z-index: 2;
        }

        .faq-question {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            color: var(--dark-gray);
            display: none;
            padding-right: 30px;
        }

        .faq-answer.show {
            display: block;
        }

        /* Contact Section */
        .contact-section {
            background: linear-gradient(rgba(45, 62, 80, 0.9), rgba(45, 62, 80, 0.9)), 
                        url('https://images.unsplash.com/photo-1560785496-3c9d27877182?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            position: relative;
        }

        .contact-content {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .contact-form {
            background: rgba(255,255,255,0.05);
            padding: 50px;
            border-radius: 0;
            margin-top: 50px;
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 30px;
            text-align: left;
        }

        .form-control {
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255,255,255,0.3);
            border-radius: 0;
            padding: 15px 0;
            color: white;
            font-family: 'Lato', sans-serif;
        }

        .form-control:focus {
            background: transparent;
            border-color: var(--sage);
            box-shadow: none;
            color: white;
        }

        .form-control::placeholder {
            color: rgba(255,255,255,0.6);
        }

        /* Footer */
        .footer {
            background: var(--cream);
            padding: 80px 0 40px;
            text-align: center;
            position: relative;
        }

        .footer-content {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 30px;
        }

        .footer-description {
            color: var(--dark-gray);
            margin-bottom: 40px;
        }

        .footer-contact {
            margin-bottom: 40px;
        }

        .footer-contact p {
            margin-bottom: 10px;
            color: var(--dark-gray);
        }

        .social-links {
            margin-bottom: 40px;
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            border: 1px solid var(--sage);
            border-radius: 50%;
            color: var(--sage);
            line-height: 38px;
            margin: 0 10px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-links a:hover {
            background: var(--sage);
            color: white;
            transform: translateY(-3px);
        }

        .footer-copyright {
            border-top: 1px solid rgba(0,0,0,0.1);
            padding-top: 30px;
            color: var(--dark-gray);
            font-size: 14px;
        }

        /* Decorative Elements */
        .decorative-element {
            position: absolute;
            z-index: 1;
        }

        .decorative-element.circle-1 {
            width: 200px;
            height: 200px;
            border: 20px solid rgba(156, 175, 136, 0.1);
            border-radius: 50%;
            top: -100px;
            right: -100px;
        }

        .decorative-element.circle-2 {
            width: 150px;
            height: 150px;
            border: 15px solid rgba(232, 185, 104, 0.1);
            border-radius: 50%;
            bottom: -75px;
            left: -75px;
        }

        .decorative-element.square {
            width: 100px;
            height: 100px;
            border: 10px solid rgba(45, 62, 80, 0.1);
            top: 50%;
            right: 10%;
            transform: rotate(45deg);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
            100% {
                transform: translateY(0) rotate(0deg);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.7;
            }
            100% {
                transform: scale(1);
                opacity: 0.5;
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Blog Section Styles */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .blog-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .blog-image {
            height: 200px;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }

        .blog-content {
            padding: 25px;
        }

        .blog-date {
            font-size: 14px;
            color: var(--sage);
            margin-bottom: 10px;
        }

        .blog-card h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .blog-card p {
            color: var(--dark-gray);
            margin-bottom: 20px;
            font-size: 15px;
        }

        .blog-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s ease;
        }

        .blog-link:hover {
            color: var(--sage);
        }

        /* Enhanced Responsive Styles */
        @media (max-width: 991px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .step, .feature, .team-member {
                margin-bottom: 40px;
            }
        }

        @media (max-width: 768px) {
            .navbar-nav {
                padding: 20px 0;
                background: rgba(255,255,255,0.98);
            }
            
            .navbar-nav .nav-link {
                margin: 10px 0;
            }
            
            .hero-content {
                padding: 0 20px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 16px;
            }
            
            .hero-tagline {
                font-size: 1.2rem;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .contact-form {
                padding: 30px 20px;
            }
        }

        @media (max-width: 576px) {
            .program-card, .testimonial {
                padding: 30px 20px;
            }
            
            .team-photo {
                width: 150px;
                height: 150px;
            }
            
            .floating-element {
                display: none;
            }
            
            .footer {
                padding: 40px 0 20px;
            }
        }