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

:root {
    --tilia-green: #184C34;
    --earth-beige: #E3D7C3;
    --leaf-vein-brown: #7A5E48;
    --soft-lime: #C6DCAB;
    --cloud-white: #FFFFFF;
    --deep-forest: #0F2A1E;
    --accent-gold: #D4AF37;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--tilia-green);
    background-color: var(--cloud-white);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(24, 76, 52, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(24, 76, 52, 0.12);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

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

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

.logo-text {
    font-family: 'Georgia', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--tilia-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo-text:hover {
    color: var(--accent-gold)
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--tilia-green);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

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

.nav-links a:hover, 
.nav-links a.active {
    color: var(--leaf-vein-brown);
}

.floating-language-selector {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Lato', sans-serif;
}

.language-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--tilia-green), var(--deep-forest));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(24, 76, 52, 0.3);
    transition: all 0.3s ease;
    color: var(--cloud-white);
    position: relative;
    overflow: hidden;
}

.language-toggle:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(24, 76, 52, 0.4);
}

.language-toggle i {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.language-text {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: var(--accent-gold);
    color: var(--deep-forest);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 8px;
    min-width: 20px;
    text-align: center;
}

.language-dropdown {
    position: absolute;
    bottom: 75px;
    right: 0;
    background: var(--cloud-white);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(24, 76, 52, 0.2);
    padding: 1.5rem;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--soft-lime);
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.language-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--tilia-green);
    font-weight: 600;
    font-size: 1rem;
}

.language-header i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.translate-widget-floating .goog-te-combo {
    width: 100% !important;
    background: var(--cloud-white) !important;
    border: 2px solid var(--soft-lime) !important;
    border-radius: 15px !important;
    padding: 12px 16px !important;
    font-size: 1rem !important;
    color: var(--tilia-green) !important;
    outline: none !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    font-family: 'Lato', sans-serif !important;
}

.translate-widget-floating .goog-te-combo:hover {
    border-color: var(--accent-gold) !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2) !important;
    transform: translateY(-1px) !important;
}

.translate-widget-floating .goog-te-combo:focus {
    border-color: var(--accent-gold) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1) !important;
}

.cta-button {
    background: linear-gradient(135deg, var(--tilia-green), var(--deep-forest));
    color: var(--cloud-white);
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(24, 76, 52, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(24, 76, 52, 0.3);
    background: linear-gradient(135deg, var(--deep-forest), var(--tilia-green));
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--tilia-green);
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(24, 76, 52, 0.12);
    padding: 2rem;
}

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

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 1rem 0;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--tilia-green);
    font-weight: 500;
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem;
    padding: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.mobile-nav-links a:hover {
    color: var(--accent-gold);
    background-color: rgba(198, 220, 171, 0.2);
    transform: translateX(5px);
}

.mobile-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.mobile-nav-links a.active {
    color: var(--accent-gold);
    background-color: rgba(212, 175, 55, 0.15);
    font-weight: 600;
}

.mobile-nav-links a.active::after {
    width: 80%;
}

.mobile-cta .cta-button:hover {
    transform: translateY(-2px) scale(1.02);
}

.mobile-cta {
    text-align: center;
    margin-top: 2rem;
}

.page-header {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(135deg, var(--earth-beige) 0%, var(--soft-lime) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaf" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M15,3 Q22,15 15,27 Q8,15 15,3" fill="%23184C34" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23leaf)"/></svg>') repeat;
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 120px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.header-content h1 {
    font-family: 'Georgia', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--tilia-green);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.header-content .highlight {
    color: var(--accent-gold);
    position: relative;
}

.header-content p {
    font-size: 1.3rem;
    color: var(--leaf-vein-brown);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.involvement-ways {
    padding: 120px 0;
    background: var(--cloud-white);
}

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

.section-label {
    display: inline-block;
    background: var(--soft-lime);
    color: var(--tilia-green);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-family: 'Georgia', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--tilia-green);
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.3rem;
    color: var(--leaf-vein-brown);
    max-width: 700px;
    margin: 0 auto;
}

.ways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.way-card {
    background: var(--cloud-white);
    padding: 3rem;
    border-radius: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(24, 76, 52, 0.08);
    border: 1px solid rgba(24, 76, 52, 0.1);
}

.way-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--soft-lime));
}

.way-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(24, 76, 52, 0.15);
}

.way-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--soft-lime), var(--earth-beige));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.way-card:hover .way-icon {
    transform: scale(1.1) rotate(5deg);
}

.way-card h3 {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    color: var(--tilia-green);
    margin-bottom: 1.5rem;
    text-align: center;
}

.way-card p {
    color: var(--leaf-vein-brown);
    margin-bottom: 2rem;
    line-height: 1.7;
    text-align: center;
}

.way-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.way-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--leaf-vein-brown);
    font-size: 0.95rem;
}

.way-features li::before {
    content: "✓";
    color: var(--accent-gold);
    font-weight: bold;
    margin-right: 12px;
    width: 20px;
    height: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.way-button {
    background: linear-gradient(135deg, var(--tilia-green), var(--deep-forest));
    color: var(--cloud-white);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    box-shadow: 0 6px 20px rgba(24, 76, 52, 0.2);
}

.way-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(24, 76, 52, 0.3);
}

.donation-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--tilia-green), var(--deep-forest));
    color: var(--cloud-white);
    position: relative;
    overflow: hidden;
}

.donation-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaf" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20,5 Q28,20 20,35 Q12,20 20,5" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23leaf)"/></svg>') repeat;
    z-index: 1;
}

.donation-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 4rem;
}

.donation-section h2 {
    font-family: 'Georgia', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.donation-section p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.donation-options {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.donation-option {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.donation-option:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.donation-option.active {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3) !important;
}

.donation-option .amount {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.donation-option .impact {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

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

.btn-light {
    background: var(--cloud-white);
    color: var(--tilia-green);
    padding: 16px 32px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-outline-light {
    background: transparent;
    color: var(--cloud-white);
    padding: 16px 32px;
    border: 2px solid var(--cloud-white);
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: var(--cloud-white);
    color: var(--tilia-green);
    transform: translateY(-3px);
}

.volunteer-section {
    padding: 120px 0;
    background: var(--earth-beige);
}

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

.volunteer-card {
    background: var(--cloud-white);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(24, 76, 52, 0.1);
}

.volunteer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(24, 76, 52, 0.12);
}

.volunteer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.volunteer-card h4 {
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    color: var(--tilia-green);
    margin-bottom: 0.5rem;
}

.commitment {
    background: var(--soft-lime);
    color: var(--tilia-green);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.volunteer-card p {
    color: var(--leaf-vein-brown);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.apply-btn {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.apply-btn:hover {
    color: var(--tilia-green);
    transform: translateX(5px);
}

.impact-stories {
    padding: 120px 0;
    background: var(--cloud-white);
}

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

.story-card {
    background: var(--earth-beige);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(24, 76, 52, 0.12);
}

.story-quote {
    font-size: 1.1rem;
    color: var(--tilia-green);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
}

.story-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-gold);
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    opacity: 0.3;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--soft-lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--tilia-green);
}

.author-info h5 {
    color: var(--tilia-green);
    margin-bottom: 0.2rem;
}

.author-info p {
    color: var(--leaf-vein-brown);
    font-size: 0.9rem;
}

footer {
    background: var(--deep-forest);
    color: var(--cloud-white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    font-weight: 600;
}

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

.footer-section a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.staff-login {
    background: rgba(212, 175, 55, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
}

.staff-login h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.staff-login .login-btn {
    background: linear-gradient(135deg, var(--accent-gold), #B8941F);
    color: var(--deep-forest);
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.staff-login .login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

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

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

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

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--cloud-white);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--soft-lime);
}

.modal-header h3 {
    font-family: 'Georgia', serif;
    color: var(--tilia-green);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--leaf-vein-brown);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-gold);
    transform: scale(1.1);
}

.donation-form .form-group {
    margin-bottom: 1.5rem;
}

.donation-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--tilia-green);
}

.donation-form input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--soft-lime);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--tilia-green);
    transition: all 0.3s ease;
}

.donation-form input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.submit-donation-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--tilia-green), var(--deep-forest));
    color: var(--cloud-white);
    padding: 16px 32px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-donation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(24, 76, 52, 0.3);
}

@media (max-width: 768px) {
    .nav {
        padding: 0 1rem;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links {
        display: none;
    }
    
    .floating-language-selector {
        bottom: 20px;
        right: 20px;
    }

    .language-toggle {
        width: 55px;
        height: 55px;
    }

    .language-toggle i {
        font-size: 1.3rem;
    }

    .language-dropdown {
        min-width: 220px;
        padding: 1.2rem;
        bottom: 70px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

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

    .page-header {
        height: 80vh;
    }

    .ways-grid {
        grid-template-columns: 1fr;
    }
    
    .donation-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .donate-buttons,
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
        padding: 1rem;
        max-width: 350px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .language-dropdown {
        right: -50px;
        min-width: 200px;
    }

    .container {
        padding: 0 0.5rem;
    }

    .donation-options {
        grid-template-columns: 1fr;
    }

    .newsletter {
        padding: 60px 0;
    }

}