:root {
            --blue-light: #e1f5fe;
            --blue-medium: #81d4fa;
            --blue-dark: #0288d1;
            --green-light: #e8f5e9;
            --green-medium: #a5d6a7;
            --orange-light: #fff3e0;
            --orange-medium: #ffb74d;
            --brown-light: #efebe9;
            --brown-medium: #bcaaa4;
            --text-dark: #263238;
            --text-light: #f5f5f5;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--blue-light);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--blue-medium), var(--green-medium));
            color: white;
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 50px;
            margin-right: 15px;
        }

        .logo-text h1 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.2rem;
        }

        .logo-text p {
            font-size: 0.8rem;
            font-style: italic;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 2rem;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 20px;
        }

        nav ul li a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 600px;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                        url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 0 2rem;
            padding-top: 80px; /* Account for fixed header */
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            animation: fadeIn 1.5s ease;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            max-width: 800px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            animation: fadeIn 2s ease;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            animation: fadeInUp 2.5s ease;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn {
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            display: inline-block;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--orange-medium);
            color: white;
        }

        .btn-primary:hover {
            background-color: #ffa726;
            transform: translateY(-3px);
        }

        .btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        /* Main Sections */
        .main-sections {
            display: flex;
            min-height: 100vh;
            flex-wrap: wrap;
        }

        .section {
            flex: 1;
            padding: 4rem 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.5s ease;
            min-width: 320px;
        }

        .section:hover {
            flex: 1.2;
        }

        .section-mental-health {
            background: linear-gradient(rgba(129, 212, 250, 0.9), rgba(129, 212, 250, 0.9)), 
                        url('https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
            color: var(--text-dark);
        }

        .section-social-service {
            background: linear-gradient(rgba(165, 214, 167, 0.9), rgba(165, 214, 167, 0.9)), 
                        url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
            color: var(--text-dark);
        }

        .section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
            line-height: 1.2;
        }

        .section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 500px;
            position: relative;
            z-index: 2;
        }

        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }

        .feature {
            background-color: rgba(255, 255, 255, 0.8);
            padding: 1.5rem;
            border-radius: 15px;
            min-width: 200px;
            flex: 1;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .feature i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--blue-dark);
        }

        .feature h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .feature p {
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        .section-btn {
            position: relative;
            z-index: 2;
        }

        /* Quote Section */
        .quote-section {
            padding: 5rem 2rem;
            background-color: var(--brown-light);
            text-align: center;
        }

        .quote {
            font-size: 2rem;
            font-style: italic;
            color: var(--text-dark);
            max-width: 800px;
            margin: 0 auto 2rem;
            position: relative;
            line-height: 1.4;
        }

        .quote::before, .quote::after {
            content: '"';
            font-size: 3rem;
            color: var(--orange-medium);
            opacity: 0.5;
            position: absolute;
        }

        .quote::before {
            top: -20px;
            left: -30px;
        }

        .quote::after {
            bottom: -40px;
            right: -30px;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 4rem 2rem;
            background-color: var(--green-light);
            text-align: center;
        }

        .gallery-section h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--text-dark);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            height: 250px;
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            padding: 1rem;
            color: white;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .overlay {
            transform: translateY(0);
        }

        .view-gallery-btn {
            margin-top: 3rem;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--blue-dark), var(--green-medium));
            color: white;
            padding: 3rem 2rem;
            text-align: center;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            max-width: 1200px;
            margin: 0 auto;
            gap: 2rem;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
            text-align: left;
        }

        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--orange-medium);
        }

        .footer-column p, .footer-column a {
            margin-bottom: 1rem;
            display: block;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-column a:hover {
            color: white;
            transform: translateX(5px);
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background-color: var(--orange-medium);
            transform: translateY(-3px);
        }

        .copyright {
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }

        .final-quote {
            font-style: italic;
            margin-top: 1rem;
            font-size: 1.2rem;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInUp {
            from { 
                opacity: 0;
                transform: translateY(20px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease;
        }

        .animate.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.1;
            animation: float 15s infinite linear;
        }

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

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero p {
                font-size: 1.3rem;
            }
            
            .section h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 992px) {
            .main-sections {
                flex-direction: column;
            }

            .section {
                padding: 3rem 1.5rem;
                min-height: 80vh;
            }

            .section:hover {
                flex: 1;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }
            
            .quote {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            header {
                flex-direction: row;
                padding: 1rem;
            }

            .logo {
                margin-bottom: 0;
            }

            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                text-align: center;
                position: absolute;
                top: 100%;
                left: 0;
                background: linear-gradient(135deg, var(--blue-medium), var(--green-medium));
                padding: 1rem 0;
            }

            nav ul.show {
                display: flex;
            }

            nav ul li {
                margin: 0.5rem 0;
                margin-left: 0;
            }

            .menu-toggle {
                display: block;
            }

            .hero {
                padding-top: 100px;
                min-height: 500px;
            }
            
            .hero h1 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            .hero p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 1rem;
                width: 100%;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }

            .quote {
                font-size: 1.5rem;
                padding: 0 1rem;
            }
            
            .quote::before {
                left: -10px;
            }
            
            .quote::after {
                right: -10px;
            }
            
            .feature {
                min-width: 150px;
            }
        }

        @media (max-width: 576px) {
            .logo-text h1 {
                font-size: 1.2rem;
            }
            
            .logo-text p {
                font-size: 0.7rem;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .section h2 {
                font-size: 1.8rem;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-column {
                text-align: center;
            }
            
            .footer-column h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }