        :root {
            --soft-blue: #b8e2f2;
            --warm-cream: #f8f4ea;
            --light-orange: #ffd8b8;
            --soft-pink: #d92d2d;
            --teal: #a4d4b4;
            --dark-teal: #2a6a36;
            --deep-blue: #1a3e72;
            --text-dark: #222;
            --text-medium: #444;
            --text-light: #666;
            --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

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

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--text-dark);
            background-color: var(--warm-cream);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Fredoka', sans-serif;
            font-weight: 600;
            line-height: 1.2;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        /* Header Styles */
        header {
            background-color: rgba(255, 255, 255, 0%);
            position: fixed;
            width: 100%;
            z-index: 100;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.01);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
        }

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

        .logo img {
            height: 48px;
            transition: var(--transition);
        }

        .logo:hover img {
            transform: rotate(10deg) scale(1.1);
        }

        .logo-text {
            font-family: 'Fredoka', sans-serif;
            color: var(--dark-teal);
            font-size: 1.8rem;
            font-weight: 600;
            letter-spacing: -2.11px;

        }

        .logo-text .l {
            color: #FF0000;
        }

        /* Red */
        .logo-text .e {
            color: #00B050;
        }

        /* Green */
        .logo-text .g {
            color: #0070C0;
        }

        /* Blue */
        .logo-text .e2 {
            color: #7030A0;
        }

        /* Purple */
        .logo-text .n {
            color: #FF9900;
        }

        /* Orange */
        .logo-text .d {
            color: #00B0F0;
        }

        /* Cyan */
        .logo-text .s {
            color: #C00000;
        }

        /* Dark Red */

        .logo-text .h {
            color: #92D050;
        }

        /* Light Green */
        .logo-text .o {
            color: #FFC000;
        }

        /* Yellow-Orange */
        .logo-text .m {
            color: #00B0F0;
        }

        /* Cyan */
        .logo-text .e3 {
            color: #FF0000;
        }

        /* Red again */

        .logo-text .f {
            color: #0070C0;
        }

        .logo-text .o2 {
            color: #00B050;
        }

        .logo-text .u {
            color: #7030A0;
        }

        .logo-text .n2 {
            color: #FF9900;
        }

        .logo-text .d2 {
            color: #00B0F0;
        }

        .logo-text .a {
            color: #FF0000;
        }

        .logo-text .t {
            color: #00B050;
        }

        .logo-text .i {
            color: #7030A0;
        }

        .logo-text .o3 {
            color: #0070C0;
        }

        .logo-text .n3 {
            color: #FF9900;
        }

        .logo-text .space {
            width: 8px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1.05rem;
            position: relative;
            transition: var(--transition);
            padding: 5px 0;
        }

        nav a:hover {
            color: var(--soft-pink);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--soft-pink);
            transition: var(--transition);
            border-radius: 3px;
        }

        nav a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.6rem;
            color: var(--text-dark);
            cursor: pointer;
            transition: var(--transition);
        }

        .mobile-menu-btn:hover {
            color: var(--soft-pink);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--soft-blue) 0%, var(--light-orange) 100%);
            padding: 200px 0 120px;
            position: relative;
            overflow: hidden;
            clip-path: ellipse(120% 85% at 50% 15%);
        }

        .hero-content {
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 2;
        }

        .hero-text {
            flex: 1;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero h1 {
            font-size: 3.8rem;
            color: var(--deep-blue);
            margin-bottom: 25px;
            line-height: 1.1;
            letter-spacing: -1px;
        }

        .hero h1 span {
            color: var(--dark-teal);
            position: relative;
            display: inline-block;
        }

        .hero h1 span::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            width: 100%;
            height: 12px;
            background-color: rgba(255, 214, 175, 0.6);
            z-index: -1;
            border-radius: 6px;
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-medium);
            margin-bottom: 35px;
            max-width: 550px;
            font-weight: 500;
        }

        .hero-buttons {
            display: flex;
            gap: 25px;
            margin-top: 35px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 36px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.1rem;
            text-align: center;
            cursor: pointer;
            border: none;
            gap: 10px;
        }

        .btn i {
            font-size: 1.1rem;
        }

        .btn-primary {
            background-color: var(--dark-teal);
            color: white;
            box-shadow: 0 6px 20px rgba(42, 106, 54, 0.3);
        }

        .btn-primary:hover {
            background-color: #1e5228;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(42, 106, 54, 0.4);
        }

        .btn-secondary {
            background-color: white;
            color: var(--dark-teal);
            border: 2px solid var(--dark-teal);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .btn-secondary:hover {
            background-color: var(--dark-teal);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(42, 106, 54, 0.2);
        }

        .hero-image {
            flex: 1;
            position: relative;
            animation: fadeIn 1.2s ease-out;
            perspective: 1000px;
        }

        .hero-image-container {
            position: relative;
            width: 100%;
            max-width: 550px;
            border-radius: 25px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            transform-style: preserve-3d;
            transform: rotateY(-5deg) rotateX(5deg);
            transition: var(--transition);
            overflow: hidden;
        }

        .hero-image-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: linear-gradient(45deg, rgba(168, 216, 234, 0.3) 0%, rgba(255, 213, 179, 0.3) 100%); */
            z-index: 1;
        }

        .hero-image-container img {
            width: 100%;
            display: block;
            transition: var(--transition);
        }

        .hero-image:hover .hero-image-container {
            transform: rotateY(0) rotateX(0) scale(1.03);
        }

        .hero-image:hover .hero-image-container img {
            transform: scale(1.1);
        }

        .hero-decoration {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            overflow: hidden;
        }

        .decoration-item {
            position: absolute;
            opacity: 0.7;
            z-index: 1;
        }

        .heart {
            color: var(--soft-pink);
            font-size: 2.2rem;
            animation: float 6s infinite ease-in-out;
        }

        .circle {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background-color: var(--teal);
            animation: float 8s infinite ease-in-out;
        }

        .star {
            color: var(--light-orange);
            font-size: 1.8rem;
            animation: float 7s infinite ease-in-out;
        }

        /* About Section */
        .about {
            padding: 140px 0;
            background-color: white;
            position: relative;
        }

        .about::before {
            /* content: ''; */
            position: absolute;
            top: -80px;
            left: 0;
            width: 100%;
            height: 150px;
            background-color: white;
            clip-path: ellipse(120% 100% at 50% 0%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-header h2 {
            font-size: 2.8rem;
            color: var(--deep-blue);
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 750px;
            margin: 0 auto;
            font-weight: 500;
        }

        .about-content {
            display: flex;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            flex: 1;
            position: relative;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transform-style: preserve-3d;
        }

        .about-image img {
            width: 100%;
            display: block;
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-image::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 6px solid var(--soft-blue);
            border-radius: 25px;
            top: -25px;
            left: -25px;
            z-index: -1;
            transition: var(--transition);
        }

        .about-image:hover::after {
            transform: translate(10px, 10px);
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 2rem;
            color: var(--deep-blue);
            margin-bottom: 25px;
        }

        .about-text p {
            margin-bottom: 25px;
            color: var(--text-medium);
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .stat-item {
            background-color: var(--warm-cream);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
        }

        .stat-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        }

        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--dark-teal);
            margin-bottom: 5px;
            line-height: 1;
        }

        .stat-label {
            font-size: 1.05rem;
            color: var(--text-light);
            font-weight: 500;
        }

        /* Programs Section */
        .programs {
            padding: 140px 0;
            background-color: var(--warm-cream);
            clip-path: ellipse(140% 100% at 50% 0%);
            margin-top: -80px;
            padding-top: 180px;
        }

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

        .program-card {
            background-color: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        .program-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }

        .program-image {
            height: 220px;
            overflow: hidden;
        }

        .program-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

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

        .program-content {
            padding: 30px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .program-content h3 {
            font-size: 1.6rem;
            color: var(--deep-blue);
            margin-bottom: 15px;
        }

        .program-content p {
            color: var(--text-light);
            margin-bottom: 25px;
            flex: 1;
        }

        .program-meta {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .program-age,
        .program-capacity {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            color: var(--text-light);
        }

        .program-age i,
        .program-capacity i {
            color: var(--dark-teal);
        }

        /* How to Help Section */
        .help {
            padding: 140px 0;
            background-color: white;
            position: relative;
        }

        .help::before {
            /* content: ''; */
            position: absolute;
            top: -80px;
            left: 0;
            width: 100%;
            height: 150px;
            background-color: white;
            clip-path: ellipse(120% 100% at 50% 0%);
        }

        .help-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .help-card {
            background-color: var(--warm-cream);
            border-radius: 25px;
            padding: 45px 35px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .help-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--soft-blue) 0%, var(--light-orange) 100%);
            opacity: 0;
            z-index: -1;
            transition: var(--transition);
        }

        .help-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            color: white;
        }

        .help-card:hover::before {
            opacity: 1;
        }

        .help-card:hover h3,
        .help-card:hover p,
        .help-card:hover .help-icon {
            color: white;
        }

        .help-card:hover .btn-secondary {
            background-color: white;
            color: var(--dark-teal);
            border-color: white;
        }

        .help-icon {
            width: 90px;
            height: 90px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 2.2rem;
            color: var(--dark-teal);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .help-card h3 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: var(--deep-blue);
            transition: var(--transition);
        }

        .value-card h3 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: var(--deep-blue);
            transition: var(--transition);
        }

        .value-card p {
            color: var(--text-light);
            margin-bottom: 30px;
            transition: var(--transition);
            font-size: 1.05rem;
        }

        .help-card p {
            color: var(--text-light);
            margin-bottom: 30px;
            transition: var(--transition);
            font-size: 1.05rem;
        }

        /* Impact Section */
        .impact {
            padding: 140px 0;
            background: linear-gradient(135deg, var(--deep-blue) 0%, var(--dark-teal) 100%);
            color: white;
            position: relative;
            clip-path: ellipse(140% 100% at 50% 0%);
            margin-top: -80px;
            padding-top: 180px;
        }

        .impact .section-header h2,
        .impact .section-header p {
            color: white;
        }

        .impact .section-header p {
            opacity: 0.9;
        }

        .impact-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 70px;
        }

        .impact-stat {
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .impact-stat:hover {
            transform: translateY(-10px);
            background-color: rgba(255, 255, 255, 0.2);
        }

        .impact-stat i {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--soft-pink);
        }

        .impact-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            font-family: 'Fredoka', sans-serif;
        }

        .impact-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Stories Section */
        .stories {
            padding: 140px 0;
            background-color: white;
        }

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

        .story-card {
            background-color: var(--warm-cream);
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        .story-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .story-image {
            height: 280px;
            overflow: hidden;
            position: relative;
        }

        .story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

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

        .story-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--soft-pink);
            color: white;
            padding: 8px 15px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .story-content {
            padding: 35px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .story-content h3 {
            font-size: 1.7rem;
            margin-bottom: 15px;
            color: var(--deep-blue);
        }

        .story-content p {
            color: var(--text-medium);
            margin-bottom: 25px;
            font-style: italic;
            flex: 1;
        }

        .story-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            border: 3px solid var(--soft-blue);
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            font-size: 1.15rem;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .author-info p {
            font-size: 0.95rem;
            color: var(--text-light);
            margin: 0;
            font-style: normal;
        }

        /* Team Section */
        .team {
            padding: 140px 0;
            background-color: var(--warm-cream);
            clip-path: ellipse(140% 100% at 50% 0%);
            margin-top: -80px;
            padding-top: 180px;
        }

        .team-members {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .team-member {
            background-color: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            text-align: center;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .member-image {
            height: 320px;
            overflow: hidden;
            position: relative;
        }

        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .team-member:hover .member-image img {
            transform: scale(1.05);
        }

        .member-social {
            position: absolute;
            bottom: 20px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 15px;
            opacity: 0;
            transform: translateY(20px);
            transition: var(--transition);
        }

        .team-member:hover .member-social {
            opacity: 1;
            transform: translateY(0);
        }

        .member-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: white;
            border-radius: 50%;
            color: var(--dark-teal);
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .member-social a:hover {
            background-color: var(--dark-teal);
            color: white;
        }

        .member-info {
            padding: 30px;
        }

        .member-info h3 {
            font-size: 1.5rem;
            color: var(--deep-blue);
            margin-bottom: 5px;
        }

        .member-info p {
            color: var(--text-light);
            margin-bottom: 15px;
        }

        .member-contact {
            color: var(--dark-teal);
            font-weight: 600;
        }

        /* Partners Section */
        .partners {
            padding: 100px 0;
            background-color: white;
        }

        .partners-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 50px;
            margin-top: 60px;
        }

        .partner-logo {
            filter: grayscale(100%) brightness(0.8);
            opacity: 0.7;
            transition: var(--transition);
            max-width: 180px;
            max-height: 80px;
            object-fit: contain;
        }

        .partner-logo:hover {
            filter: grayscale(0) brightness(1);
            opacity: 1;
            transform: scale(1.1);
        }

        /* CTA Section */
        .cta {
            padding: 160px 0;
            background: linear-gradient(135deg, var(--light-orange) 0%, var(--soft-pink) 100%);
            text-align: center;
            clip-path: ellipse(140% 100% at 50% 0%);
            margin-top: -80px;
            padding-top: 200px;
            position: relative;
            overflow: hidden;
        }

        .cta-decoration {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            overflow: hidden;
        }

        .cta .decoration-item {
            opacity: 0.3;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta h2 {
            font-size: 3.2rem;
            color: white;
            margin-bottom: 25px;
            letter-spacing: -1px;
        }

        .cta p {
            font-size: 1.3rem;
            color: white;
            max-width: 800px;
            margin: 0 auto 50px;
            opacity: 0.9;
            font-weight: 500;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .btn-white {
            background-color: white;
            color: var(--dark-teal);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .btn-white:hover {
            background-color: rgba(255, 255, 255, 0.9);
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        }



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

        .btn-outline-dark {
            background-color:  rgb(216, 166, 0);;
            color: rgb(244, 244, 244);
            border: 2px solid rgb(216, 166, 0);
        }

        .btn-outline-dark:hover {
            background-color: #7030A0;
            border: 2px solid #7030A0;
            color: rgb(245, 245, 245);

        }

        .btn-outline-white:hover {
            background-color: white;
            color: var(--dark-teal);
        }

        /* Newsletter Section */
        .newsletter {
            padding: 80px 0;
            background-color: var(--deep-blue);
            color: white;
        }

        .newsletter-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .newsletter-text {
            flex: 1;
        }

        .newsletter-text h3 {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .newsletter-text p {
            opacity: 0.9;
            font-size: 1.1rem;
        }

        .newsletter-form {
            flex: 1;
            display: flex;
            gap: 15px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 18px 25px;
            border-radius: 50px;
            border: none;
            font-size: 1.05rem;
            min-width: 200px;
        }

        .newsletter-form input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
        }

        .newsletter-form button {
            padding: 18px 35px;
            border-radius: 50px;
            background-color: var(--soft-pink);
            color: white;
            border: none;
            font-weight: 600;
            font-size: 1.05rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter-form button:hover {
            background-color: #ff9d9d;
        }

        /* Footer */
        footer {
           background-color: hsl(205deg 100% 37.65%);
            color: white;
            padding: 100px 0 40px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
        }

        .footer-col {
            margin-bottom: 30px;
        }

        .footer-col h3 {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: white;
        }

        .footer-col p {
            margin-bottom: 20px;
            /* opacity: 0.8; */
            font-size: 1.05rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: rgb(255, 255, 255);
            text-decoration: none;
            /* opacity: 0.8; */
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a i {
            font-size: 0.8rem;
        }

        .footer-links a:hover {
            opacity: 1;
            transform: translateX(5px);
        }

        .contact-info {
            list-style: none;
        }

        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .contact-info i {
            width: 20px;
            text-align: center;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--soft-pink);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            margin-top: 70px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.449);
            /* opacity: 0.7; */
            font-size: 0.95rem;
        }

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

            to {
                opacity: 1;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            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);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3.3rem;
            }

            .section-header h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 992px) {

            .hero-content,
            .about-content,
            .newsletter-container {
                flex-direction: column;
            }

            .hero {
                clip-path: ellipse(160% 85% at 50% 15%);
                padding: 170px 0 90px;
            }

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

            .hero-image {
                margin-top: 50px;
            }

            .programs,
            .impact,
            .team,
            .cta {
                clip-path: ellipse(180% 100% at 50% 0%);
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form input,
            .newsletter-form button {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            nav {
                display: none;
                position: absolute;
                top: 85px;
                left: 0;
                width: 100%;
                background-color: white;
                padding: 25px;
                box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            }

            nav.active {
                display: block;
            }

            nav ul {
                flex-direction: column;
                gap: 20px;
            }

            .mobile-menu-btn {
                display: block;
            }

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

            .hero p {
                font-size: 1.15rem;
            }

            .hero-buttons,
            .cta-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .btn {
                width: 100%;
            }

            .section-header h2 {
                font-size: 2.2rem;
            }

            .section-header p {
                font-size: 1.1rem;
            }

            .cta h2 {
                font-size: 2.5rem;
            }

            .cta p {
                font-size: 1.15rem;
            }

            .stats {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 20px;
            }

            .logo-text {
                font-size: 1.5rem;
            }

            .hero {
                clip-path: ellipse(200% 85% at 50% 15%);
                padding: 150px 0 70px;
            }

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

            .programs,
            .impact,
            .team,
            .cta {
                clip-path: ellipse(220% 100% at 50% 0%);
            }

            .programs-container,
            .stories-container,
            .team-members {
                grid-template-columns: 1fr;
            }

            .stat-number {
                font-size: 2.2rem;
            }

            .impact-number {
                font-size: 2.5rem;
            }
        }
