@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed header */
}

body {
    background: #F5F5F5;
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    color: #340857;
    overflow-x: hidden;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add some delay for staggered animations */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }

/* Fade In Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Slide In Animations */
.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.slide-in-up {
    animation: slideInUp 0.8s ease-out forwards;
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

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

/* Enhanced Hover Effects */
.hover-scale {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform, box-shadow;
}

.hover-scale:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Button Hover Effect */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease-out;
}

.btn:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Social Icons Hover Effect */
.social-icon {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.social-icon:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 5px 8px rgba(52, 8, 87, 0.2));
}

/* Nav Link Hover Effect */
.nav-links a {
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #340857;
    transition: width 0.3s ease;
}

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

/* Card Hover Effect */
.card, .feature-card, .service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
}

.card:hover, .feature-card:hover, .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Form Input Focus Effect */
.form-input:focus {
    box-shadow: 0 0 0 3px rgba(52, 8, 87, 0.1);
    border-color: #340857;
    outline: none;
}

/* Footer Link Hover Effect */
.footer-link {
    position: relative;
    transition: color 0.3s ease;
}

.footer-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #F157DB;
    transition: width 0.3s ease;
}

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

/* Pulse Animation for CTA Buttons */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.cta-button {
    animation: pulse 2s infinite;
}

/* Loading Bar Effect */
.loading-bar {
    position: relative;
    overflow: hidden;
}

.loading-bar:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #340857, transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Section Transitions */
section {
    transition: all 0.5s ease;
}

/* Prevent FOUC on mobile */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

body {
    animation: fadeIn 0.3s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #340857;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4a0a7a;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #F157DB;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(241, 87, 219, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #340857;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 87, 219, 0.4);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px 0 40px;
    background: #F5F5F5 !important;
    min-height: 60px;
    box-shadow: none !important;
}

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

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 40px;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: #340857;
    font-weight: 800;
    text-transform: uppercase;
    transition: color 0.2s;
    padding: 0 2px;
}

.nav-menu li a:hover {
    color: #c44fcf;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 48px;
}
.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.logo-regular {
    color: #2d1457;
}
.logo-accent {
    color: #c44fcf;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 36px;
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

.nav-menu li a:hover {
    color: #c44fcf;
}

.hero-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 35px 50px 0 50px;
    min-height: 80vh;
    gap: 48px;
}

.hero-left {
    flex: 1 1 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.hero-img {
    width: 670px;
    max-width: 100vw;
    min-width: 350px;
    object-fit: contain;
    background: transparent;
}

.hero-right {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding-top: 40px;
    text-align: right;
    height: 100%;
}


.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: #340857;
    line-height: 1.08;
    margin-bottom: 18px;
    margin-top: 0;
}

.hero-title br {
    display: block;
}

.hero-sub {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 34px;
    font-weight: 600;
    margin-top: 10px;
    max-width: 320px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-top: 10px;
}

.btn {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    padding: 15px 32px;
    border: 2px solid #340857;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    outline: none;
    display: inline-block;
}

.btn-filled {
    background: #340857;
    color: #fff;
    border: 2px solid #340857;
}
.btn-filled:hover {
    background: #2d1457;
    border-color: #2d1457;
}

.btn-outline {
    background: transparent;
    color: #340857;
    border: 2px solid #340857;
}
.btn-outline:hover {
    background: #f3eaff;
}

/* Why HerKudi Exists Section */
.why-section {
    background: #F5F5F5;
    padding: 100px 0 80px 0;
}
.why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.why-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #000;
    letter-spacing: -1px;
}
.why-logo {
    height: 1.2em;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 10px 0;
}
.why-subtext {
    text-align: center;
    font-size: 1.35rem;
    color: #222;
    max-width: 760px;
    margin: 0 auto;
    margin-bottom: 44px;
    font-weight: 400;
}
.why-highlight {
    color: #340857;
    font-weight: 700;
    font-size: 1.15em;
}
.why-features {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
}
.why-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px 0 rgba(51, 8, 87, 0);
    overflow: hidden;
    width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
    border: 1px solid #e0e0e0;
}
.why-card:hover {
    box-shadow: 0 6px 24px 0 rgba(52,8,87,0.13);
}
.why-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: #f0eef6;
}
.why-card-body {
    padding: 26px 18px 40px 18px;
    text-align: center;
}
.why-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #340857;
    margin-bottom: 10px;
    letter-spacing: 0.03em;
}
.why-card-accent {
    color: #F157DB;
}
.why-card-desc {
    font-size: 0.98rem;
    color: #222;
    font-weight: 400;
    line-height: 1.4;
}

/* Donate Section */
.donate-section {
    padding: 50px 0 80px 0;
}
.donate-container {
    display: flex;
    align-items: stretch;
    height: 380px;
    box-shadow: 0 1px 4px rgba(52,8,87,0.03);
    padding: 0;
    overflow: hidden;
}
.donate-left, .donate-center, .donate-right {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.donate-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 0;
    display: block;
}
.donate-left {
    position: relative;
    flex: 1.1;
    min-width: 260px;
    max-width: 380px;
    display: flex;
    align-items: stretch;
}
.donate-bg {   
    width: 110%;
    height: 110%;
    object-fit: cover;
    min-height: 0;
    display: block;
    z-index: 1;
    transform: translateX(-4%);
}
.donate-center {
    flex: 0.9;
    background: #F6C6DA;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 38px 0 52px;
    height: 100%;
    width: 100%;
    min-width: 0;
}
.donate-heading {
    color: #340857;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}
.donate-desc {
    color: #000;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.5;
    max-width: 480px;
}
.donate-btn {
    background: #340857;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    padding: 14px 38px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 8px 0 rgba(52,8,87,0.08);
    transition: all 0.2s;
}
.donate-btn:hover {
    background: #F157DB;
    color: #fff;
}
.donate-right {
    background: #FBB6D3;
    min-width: 260px;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    padding-left: 6px;
}
.donate-plus {
    color: #F157DB;
    font-size: 3rem;
    cursor: pointer;
    margin-bottom: 12px;
    margin-left: 2px;
}
.donate-see-more {
    color: #340857;
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-align: left;
    align-self: flex-start;
    cursor: pointer;
    margin-left: 0;
}

/* Growth & Empowerment Section */
.growth-section {
    background: #f5f5f5;
    padding: 100px 0 50px 0;
}
.growth-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 70px;
}
.growth-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.growth-logo {
    height: 40px;
    width: auto;
    display: block;
}
.growth-tagline {
    color: #340857;
    font-weight: 400;
    font-size: 1.3rem;
}
.growth-lede {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.25;
    margin: 58px 0 48px 0;
    max-width: 1090px;
}
.growth-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.g-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.g-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}
.g-card-text {
    background: #F6C6DA;
    color: #340857;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px;
}
.g-card-text h4 {
    margin: 0 0 8px 0;
    font-size: 1.4rem;
    font-weight: 700;
}
.g-card-text p {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 80px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-face {
    background: #FBB6D3;
    color: #340857;
    padding: 2px 1px 2px 30px;
}

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

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.stars-img {
    height: 70%;
}

.testimonial-quote {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
}

.user-info {
    text-align: left;
}

.user-name {
    font-weight: 700;
    color: #340857;
    font-size: 1rem;
    margin-bottom: 2px;
}

.user-title {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

/* Contact Section */
.contact-section {
    padding: 100px 80px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #340857;
    margin-bottom: 90px;
}

.highlight-us {
    background: #FBB6D3;
    padding: 2px 25px 2px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
        flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #340857;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-text{
    font-size: 1rem;
    color: #000000;
    font-weight: 500;
    line-height: 1.5;
}

.contact-text a {
    color: #340857;
    text-decoration: none;
}

.contact-text a:hover {
    color: #340857;
}
.form {
    display: flex;
        flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 1rem;
    font-weight: 600;
    color: #340857;
}

.form-input {
    border: none;
    border-bottom: 1.5px solid #340857;
    background: transparent;
    padding: 8px 0;
    font-size: 1rem;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.form-input:focus {
    border-bottom-color: #340857;
    box-shadow: none;
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
    border-bottom: 1.5px solid #340857;
    padding: 7px;
    background: transparent;
    resize: none;
}

.form-textarea:focus {
    border-color: #340857;
    background: transparent;
}

.submit-btn {
    background: #340857;
    color: #fff;
    border: none;
    padding: 12px 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #2d1457;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 8, 87, 0.3);
}

/* Newsletter Section */
.newsletter-section {
    position: relative;
    background: #F6C6DA;
    padding: 80px 0;
    overflow: hidden;
}

.newsletter-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/newsletter-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.newsletter-container {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-size: 2.6rem;
    font-family: 'inter', sans-serif;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.3;
    letter-spacing: 1px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-stay {
    background: #340857;
    color: #F157DB;
    padding: 0 0 0 20px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    align-items: center;
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: 2px solid #340857;
    border-radius: 40px;
    padding: 16px 20px;
    font-size: 1rem;
    color: #340857;
    font-family: 'inter', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

.newsletter-input::placeholder {
    color: #340857;
    opacity: 0.7;
}

.newsletter-input:focus {
    background: #fff;
    border-color: #F157DB;
    box-shadow: 0 0 0 3px rgba(241, 87, 219, 0.2);
}

.newsletter-btn {
    background: #340857;
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #2d1457;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 8, 87, 0.3);
}

.newsletter-btn svg {
    transition: transform 0.3s ease;
}

.newsletter-btn:hover svg {
    transform: translateX(3px);
}

.newsletter-message {
    margin-top: 15px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    display: none;
    font-family: 'Inter', sans-serif;
}

.newsletter-message.success {
    background-color: #4CAF50;
    color: white;
    display: block;
}

.newsletter-message.error {
    background-color: #f44336;
    color: white;
    display: block;
}

.newsletter-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    display: none;
    margin-left: 8px;
}

/* FAQ Section */
.faq-section {
    position: relative;
    background: #FDCAD9;
    padding: 100px 0 150px 0;
    overflow: hidden;
    margin-bottom: 0;
}

.faq-background {
    position: absolute;
    top: 80px;
    left: -170px;
    width: 100%;
    height: 100%;
    background: #FDCAD9;
    background-image: url('images/abstract.png');
    background-position: top left;
    background-repeat: no-repeat;
    transform: rotate(20deg) translate(10px, 10px);
}

.faq-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 50px;
    line-height: 1.2;
    font-family: 'Raleway', sans-serif;
}

.highlight-questions {
    color: #F157DB;
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-top: 10px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
        margin: 0 auto;
    }

.faq-item {
    background: transparent;
    border: 2px solid #340857;
    border-radius: 23px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(52, 8, 87, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    color: #340857;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: transparent;
}

.faq-icon {
    color: #F157DB;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-icon img {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    text-align: left;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 50px 50px 25px;
    margin: 0;
    color: #474747;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 500;
}

.faq-item.active .faq-icon img {
    transform: rotate(135deg);
}

/* Footer Section */
.footer {
    background: #FDCAD9;
    padding: 0 50px 40px 50px;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-left: 7px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-text {
    font-size: 1rem;
    color: #340857;
    font-weight: 400;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.social-media {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    margin-left: 10px;
}

.social-icon {
    color: #340857;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: #F157DB;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-right-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.footer-nav {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
    align-self: flex-end;
    width: 100%;
    justify-content: flex-end;
}

.footer-link {
    color: #340857;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.footer-link:hover {
    color: #F157DB;
}

.footer-description {
    color: #340857;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
    margin-top: 20px;
    text-align: right;
    font-family: 'Inter', sans-serif;
    max-width: 450px;
    align-self: flex-start;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: #8D8D8D;
    margin-bottom: 30px;
}
    
.footer-bottom {
    padding-top: 30px;
}

.copyright {
    color: #340857;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Cookie Consent Banner */
/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 280px;
    max-width: 90%;
    z-index: 1000;
    transform: translateX(120%);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 15px;
    padding: 0 0 3px 8px;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.notification-close:hover {
    opacity: 1;
}

.notification-success {
    background-color: #4CAF50;
}

.notification-info {
    background-color: #2196F3;
}

.notification-warning {
    background-color: #FF9800;
}

.notification-error {
    background-color: #F44336;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(52, 8, 87, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.cookie-consent-text a {
    color: #F157DB;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn-accept {
    background: #F157DB;
    color: white;
}

.cookie-btn-accept:hover {
    background: #340857;
    transform: translateY(-2px);
}

.cookie-btn-pref{
    background: white;
    color: #340857;
    border: 2px solid #340857;
}

.cookie-btn-pref:hover{
    color: #F157DB;
    border: 2px solid #F157DB;
    transform: translateY(-2px);
}

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

.cookie-btn-decline:hover {
    background: white;
    color: #340857;
}

.cookie-btn-settings {
    background: transparent;
    color: #F157DB;
    border: 2px solid #F157DB;
}

.cookie-btn-settings:hover {
    background: #F157DB;
    color: white;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-settings-modal.show {
    display: flex;
}

.cookie-settings-content {
    background: white;
    border-radius: 10px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #F5F5F5;
}

.cookie-settings-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #340857;
    margin: 0;
}

.cookie-settings-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-settings-close:hover {
    background: #F5F5F5;
}

.cookie-category {
    margin-bottom: 25px;
    padding: 20px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #340857;
    margin: 0;
}

.cookie-category-toggle {
    position: relative;
    width: 50px;
    height: 25px;
    background: #E0E0E0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-category-toggle.active {
    background: #F157DB;
}

.cookie-category-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 21px;
    height: 21px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-category-toggle.active::after {
    transform: translateX(25px);
}

.cookie-category-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* ========================================
   MOBILE RESPONSIVE DESIGN
   ======================================== */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #340857;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #340857 0%, #F157DB 100%);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mobile-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    position: relative;
    overflow-y: auto;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.mobile-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.mobile-menu-close {
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-line {
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.close-line:nth-child(1) {
    transform: rotate(45deg);
}

.close-line:nth-child(2) {
    transform: rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-item {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInFromRight 0.6s ease-out forwards;
}

.mobile-nav-item:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-item:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-item:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-link:hover::before {
    left: 100%;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav-text {
    flex: 1;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.5px;
}

.nav-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.mobile-nav-link:hover .nav-arrow {
    transform: translateX(5px);
    opacity: 1;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 70px;
}

.mobile-cta-btn {
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.5px;
}

.mobile-cta-btn.primary {
    background: white;
    color: #340857;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mobile-cta-btn.primary:hover {
    background: #F157DB;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

.mobile-cta-btn.secondary:hover {
    background: white;
    color: #340857;
    transform: translateY(-2px);
}

/* Mobile Responsive Breakpoints */
@media (max-width: 768px) {
    /* Hide desktop nav, show mobile toggle */
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Mobile Navbar */
    .navbar {
        padding: 15px 15px 0 15px;
        min-height: 50px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    /* Mobile Hero Section */
    .hero-section {
        flex-direction: column;
        padding: 60px 15px 20px 15px !important;
        min-height: auto;
        gap: 30px;
        text-align: center;
        align-items: center;
    }
    
    .hero-left {
        order: 2;
        flex: none;
        justify-content: center;
        width: 100%;
        display: flex;
    }
    
    .hero-img {
        width: 100%;
        max-width: 400px;
        min-width: auto;
        height: auto;
        object-fit: contain;
    }
    
    .hero-right {
        order: 1;
        flex: none;
        align-items: center;
        text-align: center;
        padding: 0;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.6rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 15px;
        margin-top: 0;
        text-align: left;
        max-width: 100%;
    }
    
    .hero-title br {
        display: none;
    }
    
    .hero-sub {
        font-size: 1rem;
        margin-bottom: 25px;
        max-width: 80%;
        text-align: center;
        line-height: 1.4;
        padding: 0 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    /* Mobile Why Section */
    .why-section {
        padding: 60px 0 40px 0;
    }
    
    .why-container {
        padding: 0 15px !important;
    }
    
    .why-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .why-subtext {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .why-features {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        margin-top: 40px;
    }
    
    .why-card {
        width: 100%;
        max-width: none;
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 0;
    }
    
    .why-card-img {
        width: 120px;
        height: 120px;
        object-fit: cover;
        flex-shrink: 0;
        border-radius: 12px 0 0 12px;
    }
    
    .why-card-body {
        padding: 15px 20px;
        flex: 1;
        text-align: left;
    }
    
    /* Mobile Donate Section */
    .donate-section {
        padding: 30px 0 40px 0;
    }
    
    .donate-container {
        flex-direction: column;
        height: auto;
        margin: 0 15px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(52, 8, 87, 0.1);
    }
    
    .donate-left {
        flex: none;
        height: 180px;
        max-width: none;
        position: relative;
    }
    
    .donate-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: none;
    }
    
    .donate-center {
        flex: none !important;
        padding: 25px 20px !important;
        text-align: center;
        background: #F6C6DA;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .donate-heading {
        font-size: 1.5rem !important;
        margin-bottom: 15px;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        hyphens: auto;
    }
    
    .donate-heading br {
        display: none;
    }
    
    .donate-desc {
        font-size: 1rem !important;
        margin-bottom: 20px;
        max-width: 100% !important;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100% !important;
        box-sizing: border-box;
        hyphens: auto;
    }
    
    .donate-btn {
        width: 100% !important;
        text-align: center;
        padding: 15px 24px !important;
        font-size: 1rem !important;
        box-sizing: border-box;
        max-width: 100% !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .donate-right {
        display: none;
    }
    
    /* Mobile Growth Section - Creative Design */
    .growth-section {
        padding: 40px 0 30px 0;
        background: linear-gradient(135deg, #f5f5f5 0%, #f0eef6 100%);
    }
    
    .growth-container {
        padding: 0 15px !important;
    }
    
    .growth-head {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .growth-logo {
        height: 50px;
        margin-bottom: 10px;
    }
    
    .growth-tagline {
        font-size: 1.3rem;
        font-weight: 600;
        color: #340857;
        text-align: center;
    }
    
    .growth-lede {
        font-size: 1.2rem;
        margin: 0 0 40px 0;
        text-align: center;
        line-height: 1.6;
        color: #333;
        padding: 0 10px;
    }
    
    /* Creative Storytelling Layout */
    .growth-cards {
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-top: 0;
    }
    
    /* Image Cards with Overlay Text */
    .g-card {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(52, 8, 87, 0.15);
        transition: transform 0.3s ease;
    }
    
    .g-card:hover {
        transform: translateY(-5px);
    }
    
    .g-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }
    
    /* Text Overlay for Images */
    .g-card:not(.g-card-text)::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: linear-gradient(transparent, rgba(51, 8, 87, 0.616));
        z-index: 1;
    }
    
    .g-card:not(.g-card-text)::before {
        content: attr(data-text);
        position: absolute;
        bottom: 15px;
        left: 20px;
        right: 20px;
        color: white;
        font-weight: 600;
        font-size: 1.1rem;
        z-index: 2;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    /* Special Text Card */
    .g-card-text {
        background: linear-gradient(135deg, #340857 0%, #F157DB 100%);
        color: white;
        padding: 30px 25px;
        text-align: center;
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(52, 8, 87, 0.2);
        position: relative;
        overflow: hidden;
    }
    
    .g-card-text::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: shimmer 3s ease-in-out infinite;
    }
    
    @keyframes shimmer {
        0%, 100% { transform: translateX(-100%) translateY(-100%); }
        50% { transform: translateX(100%) translateY(100%); }
    }
    
    .g-card-text h4 {
        font-size: 1.4rem;
        margin: 0 0 10px 0;
        font-weight: 700;
        position: relative;
        z-index: 1;
    }
    
    .g-card-text p {
        font-size: 1rem;
        margin: 0;
        opacity: 0.9;
        font-weight: 600;
        color: #ffffff;
        position: relative;
        z-index: 1;
        line-height: 1.5;
    }
    
    /* Mobile Testimonials */
    .testimonials-section {
        padding: 60px 15px !important;
    }
    
    .testimonials-container {
        padding: 0 15px !important;
    }
    
    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .testimonials-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    /* Mobile Contact */
    .contact-section {
        padding: 60px 15px !important;
    }
    
    .contact-container {
        padding: 0 15px !important;
    }
    
    .contact-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        gap: 25px;
    }

    .submit-btn{
            width: 100%;
            height: 50px;
            font-size: 1.2rem;
    }
    
    /* Mobile Newsletter */
    .newsletter-section {
        padding: 60px 15px !important;
    }
    
    .newsletter-container {
        padding: 0 15px !important;
    }
    
    .newsletter-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
        max-width: none;
    }
    
    .newsletter-input {
        width: 100%;
    }

    .newsletter-btn {
        width: 100%;
        font-size: 1.2rem;
        justify-content: center;
        text-align: center;
    }
        
    /* Mobile FAQ */
    .faq-section {
        padding: 60px 15px 100px 15px !important;
    }
    
    .faq-container {
        padding: 0 15px !important;
    }
    
    .faq-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .highlight-questions {
        font-size: 2.2rem;
    }
    
    .faq-accordion {
        gap: 10px;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 0.95rem;
    }
    
    /* Mobile Footer */
    .footer {
        padding: 0 15px 30px 15px;
    }
    
    .footer-container {
        padding: 0 15px !important;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-right {
        justify-content: flex-start;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-link {
        font-size: 1rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
        max-width: 100%;
        margin-top: 10px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .hero-section {
        padding: 50px 10px 15px 10px !important;
        gap: 25px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        font-weight: 800;
        margin-bottom: 12px;
        padding: 0 5px;
        text-align: center;
    }
    
    .hero-sub {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 15px;
    }
    
    .hero-buttons {
        max-width: 260px;
        gap: 12px;
    }
    
    .hero-img {
        max-width: 350px;
    }
    
    .donate-heading {
        font-size: 1.3rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .donate-desc {
        font-size: 0.9rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .donate-btn {
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
    }
    
    .why-title {
        font-size: 1.8rem;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .newsletter-title {
        font-size: 1.8rem;
    }
    
    .faq-title {
        font-size: 1.8rem;
    }
    
    .mobile-menu-content {
        padding: 15px;
    }
    
    .mobile-nav-link {
        padding: 15px 20px;
        font-size: 1rem;
    }
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}
