/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

a, button {
    -webkit-touch-callout: none;
    touch-action: manipulation;
}

:root {
    --primary-color: #ff6b6b;
    --primary-dark: #ee5a6f;
    --secondary-color: #4ecdc4;
    --accent-color: #ffe66d;
    --orange: #ff9f43;
    --purple: #a55eea;
    --green: #26de81;
    --pink: #fd79a8;
    --blue: #74b9ff;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #fefefe;
    --bg-gradient: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #ffe66d 100%);
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #ff6b6b 0%, #ff9f43 100%);
    --gradient-2: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    --gradient-3: linear-gradient(135deg, #a55eea 0%, #4c63d2 100%);
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'DM Sans', 'Baloo 2', 'Fredoka', sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    color: var(--text-dark);
    background: linear-gradient(to bottom, #fff5f0, #fff);
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    background: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: none;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-bottom: 4px solid var(--primary-color);
}

.navbar.scrolled .logo h1 {
    color: var(--text-dark);
    text-shadow: none;
}

.navbar.scrolled .logo .tagline {
    color: var(--orange);
    text-shadow: none;
}

.navbar.scrolled .nav-menu a {
    color: var(--text-dark);
    text-shadow: none;
}

.navbar.scrolled .mobile-menu-toggle {
    color: var(--text-dark);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo a {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Fredoka', cursive;
    color: var(--primary-color);
    display: inline-block;
    margin: 0;
    line-height: 1;
}

.logo .tagline {
    font-size: 0.75rem;
    color: var(--orange);
    font-weight: 700;
    font-family: 'Baloo 2', cursive;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-family: 'Baloo 2', cursive;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar:not(.scrolled) .nav-menu a {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.navbar:not(.scrolled) .logo h1 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.navbar:not(.scrolled) .logo .tagline {
    color: var(--orange);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.navbar:not(.scrolled) .btn-donate {
    background: rgba(255,255,255,0.2);
    border: 2px solid var(--white);
}

.navbar:not(.scrolled) .btn-donate:hover {
    background: var(--white);
    color: var(--primary-color) !important;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    width: 100%;
}

.btn-donate {
    background: var(--gradient-1);
    color: var(--white) !important;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    font-weight: 700;
}

.btn-donate:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff9f43 50%, #ffe66d 100%);
    color: var(--white);
    padding: 120px 0 60px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.hero[style*="background-image"] {
    background-size: cover !important;
}

.hero-overlay {
    display: none;
}

.hero::before {
    display: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.hero-stats .stat-item {
    text-align: center;
    background: transparent !important;
    padding: 1rem;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.hero-stats .stat-item .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Fredoka', cursive;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.5);
    color: var(--white);
}

.hero-stats .stat-item .stat-label {
    font-size: 1.1rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8), 0 0 15px rgba(0,0,0,0.5);
    color: var(--white);
}

.hero-stats .stat-item:hover {
    transform: scale(1.05);
    background: transparent !important;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Fredoka', cursive;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 2px;
    white-space: nowrap;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.5), 0 0 20px rgba(0,0,0,0.3);
    animation: bounce 2s ease-in-out infinite;
    color: var(--white);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 2.5rem;
    opacity: 0.98;
    font-weight: 500;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Fredoka', cursive;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border: 3px solid var(--white);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    background: var(--orange);
    color: var(--white);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    padding: 1.2rem 3rem;
    border: 3px solid var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Fredoka', cursive;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1.2rem;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--orange);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    background: rgba(255,255,255,0.2);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255,255,255,0.3);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Fredoka', cursive;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}

.stat-label {
    font-size: 1.2rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    opacity: 0.95;
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background: var(--gradient-1);
    color: var(--white);
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
}

.mission .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 0;
    margin-right: auto;
    max-width: 100%;
    padding-left: 40px;
}

.mission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.mission-content-full {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 0;
    margin-right: auto;
}

.mission-text-overlay {
    background: rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.mission-text-overlay h2 {
    font-size: 3rem;
    font-family: 'Fredoka', cursive;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.mission-text-overlay .mission-tagline {
    font-size: 1.4rem;
    font-family: 'DM Sans', sans-serif;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.mission-text-overlay p {
    font-size: 1.15rem;
    font-family: 'DM Sans', sans-serif;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.mission-text-overlay .btn-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Fredoka', cursive;
    transition: transform 0.3s ease;
    display: inline-block;
}

.mission-text-overlay .btn-link:hover {
    transform: translateX(10px);
    color: var(--orange);
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.video-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.video-header h2 {
    font-size: 2.5rem;
    font-family: 'Fredoka', cursive;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.video-intro {
    font-size: 1.3rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.6;
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 0.42fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.video-content h2 {
    font-size: 2.5rem;
    font-family: 'Fredoka', cursive;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.video-intro {
    font-size: 1.3rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 500;
    line-height: 1.6;
}

.video-description {
    text-align: left;
}

.video-description h2 {
    font-size: 2.5rem;
    font-family: 'Fredoka', cursive;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.video-description .video-intro {
    font-size: 1.3rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.video-description p {
    font-size: 1.15rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.video-description p:last-child {
    margin-bottom: 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 177.78%; /* 9:16 portrait aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    background: #000;
    width: 100%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.video-description {
    text-align: left;
}

.video-description p {
    font-size: 1.15rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.video-description p:last-child {
    margin-bottom: 0;
}

/* Impact Section */
.impact-section {
    padding: 50px 0;
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
}

.impact-section .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0 !important;
    max-width: 100% !important;
    padding-right: 40px;
    padding-left: 0;
    width: 100%;
}

.impact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.impact-content-left {
    position: relative;
    z-index: 2;
    max-width: 650px;
    background: rgba(255, 255, 255, 0.3);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    margin-left: auto;
    margin-right: 0;
}

.impact-content-left h2 {
    font-size: 3rem;
    font-family: 'Fredoka', cursive;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.impact-subtitle {
    font-size: 1.5rem;
    font-family: 'DM Sans', sans-serif;
    color: #000000;
    font-weight: 600;
    margin-bottom: 2rem;
}

.impact-content-left p {
    font-size: 1.15rem;
    font-family: 'DM Sans', sans-serif;
    color: #000000;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.impact-features {
    margin-top: 2rem;
}

.impact-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.impact-feature:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 3rem;
    filter: drop-shadow(2px 4px 0 rgba(0,0,0,0.2));
}

.impact-feature strong {
    font-size: 1.3rem;
    font-family: 'Fredoka', cursive;
    color: var(--white);
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.impact-feature p {
    font-size: 1rem;
    font-family: 'Baloo 2', cursive;
    color: rgba(255,255,255,0.9);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    margin: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-family: 'Fredoka', cursive;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: var(--gradient-1);
    border-radius: 50px;
}

.section-header p {
    font-size: 1.35rem;
    font-family: 'Baloo 2', cursive;
    color: var(--text-light);
    font-weight: 500;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-family: 'Baloo 2', cursive;
    line-height: 1.9;
    color: var(--text-dark);
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-link:hover {
    transform: translateX(5px);
}

.mission-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gradient-2);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.placeholder-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

/* Impact Section */
.impact {
    padding: 50px 0;
    background: var(--gradient-1);
    color: var(--white);
}

.impact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.impact-header {
    margin-bottom: 1.5rem;
}

.impact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.impact-header p {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.95;
    line-height: 1.6;
}

.impact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.impact .btn-primary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.impact .btn-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.impact-content > p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.impact-highlights {
    margin: 2rem 0;
}

.highlight-item {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--white);
}

.highlight-item strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Stories Section */
.stories {
    padding: 50px 0;
    background: var(--bg-light);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.story-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-2);
}

.story-card:nth-child(1)::before { background: var(--gradient-1); }
.story-card:nth-child(2)::before { background: var(--gradient-2); }
.story-card:nth-child(3)::before { background: var(--gradient-3); }

.story-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.story-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.story-avatar {
    font-size: 4rem;
    filter: drop-shadow(4px 6px 0 rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.story-card:hover .story-avatar {
    transform: scale(1.2) rotate(5deg);
}

.story-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-family: 'Fredoka', cursive;
    font-size: 1.3rem;
    font-weight: 600;
}

.story-info p {
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Baloo 2', cursive;
}

.story-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.9;
    font-size: 1.1rem;
    font-family: 'Baloo 2', cursive;
}

.story-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.story-link:hover {
    transform: translateX(5px);
}

/* CTA Section */
.cta-wrapper {
    width: 100%;
    max-width: 100vw;
    padding: 20px 0;
    background-color: #ffffff;
    box-sizing: border-box;
    overflow-x: hidden;
}

.cta {
    position: relative;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    padding: 30px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 0;
    pointer-events: none;
    display: block;
}

.cta .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

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

.cta-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 0;
    z-index: 2;
}

.cta .btn-primary {
    background: #ff6f00;
    color: #ffffff;
    border: 1px solid #ffffff;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.cta .btn-primary:hover {
    background: #ff8c00;
    color: #ffffff;
    border: 1px solid #ffffff;
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.6);
    transform: translateY(-2px);
}


.cta h2 {
    font-size: 3.5rem;
    font-family: 'Fredoka', cursive;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    letter-spacing: 3px;
    white-space: normal;
    word-wrap: break-word;
}

.cta p {
    font-size: 1.4rem;
    font-family: 'Baloo 2', cursive;
    margin-bottom: 2.5rem;
    opacity: 0.98;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.btn-large {
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    font-weight: 700;
    font-family: 'Baloo 2', cursive;
    font-size: 1.2rem;
    opacity: 0.98;
    background: rgba(255,255,255,0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: #f7efe9;
    color: var(--text-dark);
    padding: 1.5rem 1rem;
}

@media (min-width: 768px) {
    .footer {
        padding: 1.5rem 2rem;
    }
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1rem;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .footer-main {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
    }
}

/* Left Section */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-left {
        flex-direction: row;
        align-items: flex-start;
        gap: 1.5rem;
        flex: 0 0 auto;
    }
}

.footer-logo-wrapper {
    width: 80px;
    flex-shrink: 0;
}

.footer-logo-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.footer-contact {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.contact-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.footer-contact a {
    color: var(--orange);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-contact a:hover {
    opacity: 0.8;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
    font-size: 1.2rem;
}

.footer-social-links a {
    color: var(--text-dark);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-social-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Right Section */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    flex: 0 0 auto;
    max-width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .footer-right {
        align-items: flex-end;
        text-align: right;
    }
}

.footer-right > a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-right > a:hover {
    color: var(--orange);
}

.footer-involved {
    margin-top: 0;
    align-self: flex-start;
}

.footer-involved h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-involved a {
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 0.4rem;
    transition: color 0.3s ease;
}

.footer-involved a:hover {
    color: var(--orange);
}

.footer-donate-btn {
    margin-top: 0.5rem;
    background: var(--orange);
    color: #ffffff !important;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.footer-donate-btn:hover {
    background: #ff8533;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    color: #ffffff !important;
}

/* Bottom Note */
.footer-bottom {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
    margin: 0;
    line-height: 1.6;
}

.footer-legal-links {
    margin-top: 0.75rem;
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
    font-weight: 600;
}

.footer-legal-links a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--orange);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white) !important;
        width: 100%;
        height: calc(100vh - 70px);
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        z-index: 9998;
        border-top: 3px solid var(--primary-color);
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        color: var(--text-dark) !important;
        text-shadow: none !important;
    }
    
    .nav-menu .btn-donate {
        color: var(--white) !important;
    }

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

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .mission-content,
    .impact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Footer tablet */
    .footer-involved {
        margin-left: 0 !important;
    }

    .footer-left {
        flex-direction: column !important;
    }

    .footer-right {
        align-items: flex-start !important;
        text-align: left !important;
    }

    /* Homepage tablet */
    .web-home-page .frame {
        padding: 100px 40px 80px !important;
    }

    .web-home-page .text-wrapper {
        font-size: 3rem !important;
        white-space: normal !important;
    }

    .web-home-page .p {
        font-size: 1.2rem !important;
        width: 90% !important;
    }

    .web-home-page .frame-9 {
        width: 90%;
    }

    .web-home-page .frame-14,
    .web-home-page .frame-16 {
        padding: 80px 40px !important;
    }

    .web-home-page .frame-15 {
        width: 85% !important;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

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

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

    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Hero section mobile optimization - Full Screen */
    .hero {
        min-height: calc(100vh - 65px) !important;
        height: calc(100vh - 65px) !important;
        max-height: calc(100vh - 65px) !important;
        background-size: cover !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
        padding: 0 !important;
        margin-top: 65px !important; /* Account for fixed navbar */
        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    /* Adjust background position to show boy's face better on mobile */
    .hero[style*="background-position: center 95%"] {
        background-position: 60% center !important;
    }
    
    /* Ensure hero-overlay doesn't block on mobile */
    .hero-overlay {
        display: none !important;
    }
    
    /* Remove all overlay gradients on mobile for full image visibility */
    .hero::before {
        display: none !important;
        content: none !important;
    }
    
    /* Remove bottom overlay gradient on mobile */
    .hero::after {
        display: none !important;
        content: none !important;
    }
    
    .hero .container {
        padding-top: 20px !important; /* Reduced since navbar takes space */
        padding-bottom: 20px !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        height: calc(100% - 65px) !important; /* Account for navbar */
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        position: relative !important;
        z-index: 2 !important;
    }
    
    .hero-content {
        text-align: center !important;
        padding: 0 1rem !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        width: 100% !important;
        padding-top: 0 !important;
        margin-top: 20px !important;
        order: 1 !important;
        position: relative !important;
        z-index: 2 !important;
    }
    
    .hero-content[style*="padding-top"] {
        padding-top: 0 !important;
    }
    
    .hero-content[style*="margin"] {
        margin: 0 auto !important;
    }
    
    .hero-title {
        font-size: 1.6rem !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.3 !important;
        padding: 0 !important;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.7) !important;
        color: var(--white) !important;
    }
    
    .hero-title[style*="font-size: 3.5rem"] {
        font-size: 1.6rem !important;
    }
    
    .hero-title[style*="margin-bottom: 2rem"] {
        margin-bottom: 0.75rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        padding: 0 0.5rem !important;
        margin-bottom: 1rem !important;
        text-shadow: 1px 1px 6px rgba(0,0,0,0.7) !important;
        color: var(--white) !important;
    }
    
    .hero-subtitle[style*="font-size: 1.4rem"] {
        font-size: 0.9rem !important;
    }
    
    .hero-subtitle[style*="margin-bottom: 3rem"] {
        margin-bottom: 1rem !important;
    }
    
    .hero-stats {
        margin-top: auto !important;
        margin-bottom: 60px !important;
        padding: 0 0.5rem !important;
        width: 100% !important;
        order: 2 !important;
        align-self: flex-end !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons a {
        width: 100%;
        text-align: center;
    }
    
    /* Mission and Impact sections */
    .mission,
    .impact-section {
        padding: 60px 0;
    }
    
    /* Stats mobile */
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 !important;
        background: transparent !important;
    }
    
    /* Remove all background effects from hero stats on mobile */
    .hero-stats .stat-item,
    .hero .hero-stats .stat-item {
        padding: 0.5rem !important;
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-width: 0 !important;
        border-style: none !important;
        border-color: transparent !important;
    }
    
    /* Ensure hero-stats container itself has no background */
    .hero-stats {
        background: transparent !important;
        background-color: transparent !important;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Section headers mobile */
    h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    /* Container padding */
    .container {
        padding: 0 15px;
    }
    
    /* Logo mobile */
    .logo {
        flex-shrink: 0;
        max-width: 60%;
    }
    
    .logo a {
        gap: 0.5rem !important;
    }
    
    .logo-text h1 {
        font-size: 1.1rem !important;
        line-height: 1.2 !important;
    }
    
    .logo-text .tagline {
        font-size: 0.55rem !important;
        margin-top: 1px !important;
    }
    
    .logo-image {
        height: 35px !important;
        width: auto !important;
        max-width: 35px !important;
    }
    
    .nav-wrapper {
        gap: 0.5rem;
    }

    /* Footer mobile optimizations */
    .footer-involved {
        margin-left: 0 !important;
        margin-top: 1rem;
        width: 100%;
    }

    .footer-left {
        flex-direction: column !important;
        gap: 1.5rem;
    }

    .footer-right {
        align-items: flex-start !important;
        text-align: left !important;
        margin-top: 1.5rem;
    }

    .footer-main {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-contact {
        width: 100%;
    }

    /* Homepage mobile optimizations */
    .web-home-page .frame {
        height: auto !important;
        min-height: auto !important;
        padding: 80px 20px 60px !important;
    }

    .web-home-page .frame-4 {
        width: 100% !important;
        padding: 15px 20px !important;
        left: 0 !important;
        position: fixed !important;
        top: 0 !important;
    }

    .web-home-page .text-wrapper {
        font-size: 2rem !important;
        letter-spacing: 0.5px !important;
        white-space: normal !important;
        line-height: 1.3 !important;
    }

    .web-home-page .p {
        font-size: 1rem !important;
        width: 100% !important;
        padding: 0 1rem;
    }

    .web-home-page .frame-3 {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .web-home-page .frame-9 {
        flex-wrap: wrap;
        gap: 1.5rem;
        width: 100%;
        padding: 0 1rem;
    }

    .web-home-page .frame-10 {
        flex: 1 1 calc(50% - 0.75rem);
        min-width: 120px;
    }

    .web-home-page .text-wrapper-6 {
        font-size: 2rem !important;
    }

    .web-home-page .text-wrapper-7 {
        font-size: 0.9rem !important;
    }

    .web-home-page .frame-wrapper {
        padding: 40px 20px !important;
        height: auto !important;
        min-height: auto !important;
    }

    .web-home-page .frame-11 {
        padding: 24px 20px !important;
        width: 100% !important;
    }

    .web-home-page .frame-12 {
        width: 100% !important;
        max-width: 100% !important;
        padding: 24px 16px !important;
    }

    .web-home-page .text-wrapper-8 {
        font-size: 2rem !important;
    }

    .web-home-page .every-child-deserves {
        font-size: 1rem !important;
    }

    .web-home-page .frame-14 {
        padding: 60px 20px !important;
        height: auto !important;
        min-height: auto !important;
        background-position: center center !important;
    }

    .web-home-page .frame-15 {
        width: 100% !important;
        max-width: 100% !important;
        padding: 24px 16px !important;
    }

    .web-home-page .from-streets-to,
    .web-home-page .transforming {
        font-size: 1.5rem !important;
    }

    .web-home-page .frame-16 {
        padding: 60px 20px !important;
        height: auto !important;
        min-height: auto !important;
    }

    .web-home-page .text-wrapper-9 {
        font-size: 2rem !important;
    }

    .web-home-page .text-wrapper-10 {
        font-size: 1rem !important;
    }

    .web-home-page .frame-17 {
        flex-direction: column;
        gap: 2rem;
    }

    .web-home-page .frame-18 {
        width: 100%;
    }

    .web-home-page .image {
        width: 100% !important;
        height: auto !important;
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }

    .web-home-page .frame-20 {
        padding: 40px 20px !important;
        height: auto !important;
        min-height: auto !important;
    }

    .web-home-page .frame-21 {
        text-align: center;
    }

    .web-home-page .frame-22 {
        width: 100%;
        padding: 16px 32px !important;
    }

    .web-home-page .frame-23 {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .web-home-page .frame-25 {
        padding: 40px 20px !important;
    }

    .web-home-page .frame-26 {
        flex-direction: column;
        gap: 2rem;
    }

    .web-home-page .frame-27 {
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
    }

    /* CTA mobile - Clean and Neat Layout */
    .cta-wrapper {
        padding: 0 !important;
        margin: 3rem 0 !important;
        background: var(--white) !important;
    }

    .cta {
        position: relative !important;
        padding: 0 !important;
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        background: var(--white) !important;
    }

    .cta-image {
        width: 100% !important;
        height: 250px !important;
        object-fit: cover !important;
        display: block !important;
        margin: 0 !important;
    }

    .cta .container {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        padding: 2.5rem 1.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        background: var(--white) !important;
        box-shadow: none !important;
    }

    .cta-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1.25rem !important;
    }

    .cta h2 {
        font-size: 1.75rem !important;
        letter-spacing: 0.3px !important;
        white-space: normal !important;
        line-height: 1.3 !important;
        margin: 0 0 0.5rem 0 !important;
        padding: 0 !important;
        color: var(--text-dark) !important;
        font-weight: 800 !important;
        text-shadow: none !important;
    }

    .cta p {
        font-size: 1rem !important;
        line-height: 1.7 !important;
        margin: 0 0 1rem 0 !important;
        padding: 0 !important;
        color: var(--text-light) !important;
        text-shadow: none !important;
        max-width: 100% !important;
    }

    .cta .btn-primary,
    .cta .btn-large {
        padding: 1.1rem 2.5rem !important;
        font-size: 1.05rem !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0.5rem 0 1.25rem 0 !important;
        display: block !important;
        box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4) !important;
        font-weight: 700 !important;
        border-radius: 50px !important;
        background: #ff6f00 !important;
        color: var(--white) !important;
        border: none !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
    }

    .cta-features {
        flex-direction: column !important;
        gap: 0.75rem !important;
        margin: 0 !important;
        align-items: stretch !important;
        padding: 0 !important;
        width: 100% !important;
        display: flex !important;
    }

    .cta-feature {
        font-size: 0.9rem !important;
        padding: 0.85rem 1.5rem !important;
        width: 100% !important;
        text-align: center !important;
        background: var(--bg-light) !important;
        border: 2px solid #f0f0f0 !important;
        border-radius: 12px !important;
        color: var(--text-dark) !important;
        margin: 0 !important;
        font-weight: 600 !important;
        text-shadow: none !important;
        backdrop-filter: none !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
    }

    /* Combined footer section mobile */
    .web-home-page .combined-footer-section {
        height: auto !important;
        min-height: auto !important;
    }

    /* Disable scroll snap on mobile */
    html {
        scroll-snap-type: none !important;
    }

    .web-home-page > * {
        scroll-snap-align: none !important;
        scroll-snap-stop: normal !important;
    }
    
    /* Additional Mobile Optimizations */
    .mission {
        min-height: auto !important;
        padding: 0 !important;
        align-items: stretch !important;
        background-size: cover !important;
        background-position: center !important;
        position: relative !important;
        background-repeat: no-repeat !important;
        display: flex !important;
        flex-direction: column !important;
        background-attachment: scroll !important;
    }
    
    /* Mission image section - show image first at full height */
    .mission::before {
        content: '' !important;
        display: block !important;
        width: 100% !important;
        min-height: 350px !important;
        height: 50vh !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        flex-shrink: 0 !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    /* Extract and show the background-image from inline style in ::before */
    .mission[style*="background-image"]::before {
        background-image: url('/images/Generated Image October 27, 2025 - 1_06PM (1).png') !important;
    }
    
    /* Hide the background on the section itself, but keep it for ::before inheritance */
    .mission[style*="background-image"] {
        background: transparent !important;
    }
    
    .mission .container {
        justify-content: flex-start !important;
        align-items: stretch !important;
        padding: 30px 20px !important;
        margin: 0 auto !important;
        background: var(--gradient-1) !important;
        width: 100% !important;
        position: relative !important;
        z-index: 2 !important;
        order: 2 !important;
        flex-shrink: 0 !important;
    }
    
    /* Remove overlay on mobile */
    .mission-overlay {
        display: none !important;
    }
    
    .mission-content-full {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto !important;
        text-align: left !important;
    }
    
    .mission-text-overlay {
        padding: 0 !important;
        background: transparent !important;
        backdrop-filter: none !important;
        border-radius: 0 !important;
    }
    
    .mission-text-overlay h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
        color: var(--white) !important;
    }
    
    .mission-text-overlay .mission-tagline {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
        color: var(--white) !important;
    }
    
    .mission-text-overlay p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1rem !important;
        color: var(--white) !important;
    }
    
    .mission-text-overlay .btn-link {
        font-size: 1rem !important;
        color: var(--white) !important;
    }
    
    /* Impact Section Mobile - Show image first, then content */
    .impact-section {
        min-height: auto !important;
        padding: 0 !important;
        align-items: stretch !important;
        background-size: cover !important;
        background-position: center !important;
        position: relative !important;
        background-repeat: no-repeat !important;
        display: flex !important;
        flex-direction: column !important;
        background-attachment: scroll !important;
    }
    
    /* Impact image section - show image first at full height */
    .impact-section::before {
        content: '' !important;
        display: block !important;
        width: 100% !important;
        min-height: 350px !important;
        height: 50vh !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        flex-shrink: 0 !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    /* Extract and show the background-image from inline style in ::before */
    .impact-section[style*="background-image"]::before {
        background-image: url('/images/From Streets to Badminton Courts.png') !important;
    }
    
    /* Hide the background on the section itself, but keep it for ::before inheritance */
    .impact-section[style*="background-image"] {
        background: transparent !important;
    }
    
    .impact-section .container {
        justify-content: flex-start !important;
        align-items: stretch !important;
        padding: 30px 20px !important;
        margin: 0 auto !important;
        background: rgba(255, 255, 255, 0.95) !important;
        width: 100% !important;
        position: relative !important;
        z-index: 2 !important;
        order: 2 !important;
        flex-shrink: 0 !important;
    }
    
    /* Remove overlay on mobile */
    .impact-overlay {
        display: none !important;
    }
    
    .impact-content-left {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto !important;
        text-align: left !important;
        background: transparent !important;
        backdrop-filter: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
    }
    
    .impact-content-left h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
        color: var(--text-dark) !important;
    }
    
    .impact-content-left .impact-subtitle {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
        color: var(--text-dark) !important;
    }
    
    .impact-content-left p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1rem !important;
        color: var(--text-dark) !important;
    }
    
    /* Video Section Mobile */
    .video-section {
        padding: 40px 0 !important;
        display: block !important;
        visibility: visible !important;
        background: var(--bg-light) !important;
    }
    
    .video-section .container {
        padding: 0 20px !important;
    }
    
    .video-header {
        padding: 0 20px !important;
        margin-bottom: 2rem !important;
    }
    
    .video-header h2 {
        font-size: 1.75rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.3 !important;
    }
    
    .video-intro {
        font-size: 1.1rem !important;
    }
    
    .video-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 !important;
        display: grid !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .video-wrapper {
        border-radius: 15px !important;
        position: relative !important;
        padding-bottom: 177.78% !important; /* 9:16 portrait aspect ratio */
        height: 0 !important;
        overflow: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
        background: #000 !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    .video-wrapper iframe {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        border: none !important;
        border-radius: 15px !important;
        display: block !important;
        z-index: 1 !important;
    }
    
    .video-mobile-fallback {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 2 !important;
        background: rgba(255, 0, 0, 0.9) !important;
        padding: 1.5rem 2rem !important;
        border-radius: 15px !important;
        text-decoration: none !important;
        color: #fff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 1rem !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
        transition: all 0.3s ease !important;
    }
    
    .video-mobile-fallback:hover,
    .video-mobile-fallback:active {
        background: rgba(255, 0, 0, 1) !important;
        transform: translate(-50%, -50%) scale(1.05) !important;
    }
    
    .video-fallback-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    
    .video-fallback-content p {
        margin: 0 !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: #fff !important;
    }
    
    /* Hide fallback on desktop */
    @media (min-width: 641px) {
        .video-mobile-fallback {
            display: none !important;
        }
    }
    
    .video-description {
        padding: 0 !important;
        margin-bottom: 2rem !important;
    }
    
    .video-description h2 {
        font-size: 1.75rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.3 !important;
    }
    
    .video-description .video-intro {
        font-size: 1.1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .video-description p {
        font-size: 1rem !important;
        line-height: 1.7 !important;
        margin-bottom: 1.2rem !important;
    }
    
    
    .impact-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .impact-image {
        width: 100%;
        margin-top: 2rem;
    }
    
    .impact-highlights {
        margin: 1.5rem 0 !important;
    }
    
    .highlight-item {
        margin-bottom: 1rem !important;
        padding-left: 1rem !important;
    }
    
    .hero-title {
        white-space: normal !important;
        font-size: 2rem !important;
        letter-spacing: 1px !important;
    }
    
    .btn-primary {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hero-stats .stat-item .stat-number {
        font-size: 2.2rem !important;
    }
    
    .hero-stats .stat-item .stat-label {
        font-size: 0.9rem !important;
    }
    
    /* Grid layouts mobile */
    .program-grid,
    .testimonials-grid,
    .stories-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* Card padding mobile */
    .program-card,
    .testimonial-card,
    .story-card-large {
        padding: 1.5rem !important;
    }
    
    /* Section headings mobile */
    h1 {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }
    
    h2 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    
    h3 {
        font-size: 1.4rem !important;
    }
    
    /* Two-column layouts mobile */
    .grid-template-columns-2 {
        grid-template-columns: 1fr !important;
    }
    
    /* Image optimization mobile */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Padding adjustments mobile */
    section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Button sizing mobile */
    .btn-primary,
    .btn-secondary,
    .btn-link {
        font-size: 1rem !important;
        padding: 0.9rem 1.5rem !important;
        min-height: 44px; /* Touch target size */
    }
    
    /* Navbar mobile - Always visible with solid background */
    .navbar {
        padding: 0.6rem 0 !important;
        max-height: 65px !important;
        background: var(--white) !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
        border-bottom: 3px solid var(--primary-color) !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    /* Ensure navbar stays visible even when not scrolled on mobile */
    .navbar:not(.scrolled) {
        background: var(--white) !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }
    
    /* Mobile navbar logo and text colors - always visible */
    .navbar:not(.scrolled) .logo h1,
    .navbar:not(.scrolled) .logo .tagline {
        color: var(--primary-color) !important;
        text-shadow: none !important;
    }
    
    .navbar:not(.scrolled) .mobile-menu-toggle {
        color: var(--text-dark) !important;
    }
    
    .navbar .container {
        padding: 0 15px !important;
    }
    
    .nav-wrapper {
        align-items: center !important;
    }
    
    .nav-menu {
        padding: 2rem 1.5rem !important;
        background: var(--white) !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
        border-top: 3px solid var(--primary-color) !important;
    }
    
    .nav-menu a {
        font-size: 1.1rem !important;
        padding: 1rem 0 !important;
        display: block !important;
        color: var(--text-dark) !important;
        font-weight: 600 !important;
        border-bottom: 1px solid rgba(0,0,0,0.05) !important;
        text-shadow: none !important;
        transition: all 0.3s ease !important;
    }
    
    .nav-menu a:hover,
    .nav-menu a:focus {
        color: var(--primary-color) !important;
        padding-left: 0.5rem !important;
        background: rgba(255, 107, 107, 0.05) !important;
    }
    
    .nav-menu a.active {
        color: var(--primary-color) !important;
        font-weight: 700 !important;
        border-left: 4px solid var(--primary-color) !important;
        padding-left: 0.75rem !important;
    }
    
    .nav-menu .btn-donate {
        margin-top: 1rem !important;
        width: 100% !important;
        text-align: center !important;
        padding: 1rem 2rem !important;
        background: var(--gradient-1) !important;
        color: var(--white) !important;
        border: none !important;
        border-radius: 50px !important;
        font-weight: 700 !important;
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3) !important;
    }
    
    .nav-menu .btn-donate:hover {
        background: var(--primary-dark) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4) !important;
    }
    
    .btn-donate {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
        padding: 0.9rem 1.5rem !important;
    }
    
    .mobile-menu-toggle {
        font-size: 1.8rem !important;
        padding: 0.5rem !important;
        min-width: 44px;
        min-height: 44px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Prevent text size adjustment on iOS */
    input, textarea, select {
        font-size: 16px !important;
    }
    
    /* Improve touch scrolling */
    * {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Fix for horizontal scrolling issues */
    body, html {
        overflow-x: hidden !important;
        position: relative;
        width: 100%;
        max-width: 100vw;
    }
    
    /* Navbar is fixed, so content flows normally underneath */
    body {
        padding-top: 0 !important;
    }
    
    /* Make sure hero content is visible and not hidden behind navbar */
    .hero {
        position: relative;
        z-index: 1;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
    }
    
    /* Override all inline styles for hero on mobile */
    .hero .hero-content * {
        font-size: inherit !important;
    }
    
    .hero h2.hero-title {
        font-size: 1.8rem !important;
    }
    
    .hero p.hero-subtitle {
        font-size: 0.95rem !important;
    }
    
    /* Ensure images don't overflow */
    img {
        max-width: 100% !important;
        height: auto !important;
        display: block;
    }
    
    /* Table optimizations */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Ensure all containers respect viewport */
    .container,
    .container-fluid,
    section,
    div[class*="container"] {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Fix any inline styles that might cause overflow */
    [style*="min-width"],
    [style*="width: 100vw"] {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Tablet optimizations */
@media (max-width: 968px) and (min-width: 641px) {
    .hero-title {
        white-space: normal !important;
        font-size: 2.5rem !important;
    }
    
    .stories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .program-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

