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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000000;
    background: #F0B90B;
    min-height: 100vh;
}

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

.header {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.header h1 {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 3rem;
    color: #000000;
    margin-bottom: 3px;
    font-weight: 900;
    font-style: normal;
    letter-spacing: 0.5px;
}

.header .charity-subtitle {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.3rem;
    color: #000000;
    font-weight: 700;
    margin-bottom: 8px;
    font-style: normal;
}

.header .quote {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.01rem;
    color: #000000;
    font-style: italic;
    border-left: 2px solid #000000;
    padding-left: 20px;
    margin: 8px auto 0;
    max-width: 850px;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav a {
    color: #000000;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.nav a:hover {
    background: #F0B90B;
    color: #000000;
    transform: translateY(-2px);
}

.section {
    background: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.15);
    position: relative;
}

.section-logo {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 100px;
    height: 100px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.section-logo:hover {
    opacity: 1;
}

.section-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.section h2 {
    font-family: 'Times New Roman', Times, serif;
    color: #000000;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    font-weight: 600;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section h2 .flag-icon {
    width: 40px;
    height: auto;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.section h2::after {
    display: none;
}

.section h3 {
    font-family: 'Times New Roman', Times, serif;
    color: #000000;
    font-size: 1.8rem;
    margin: 30px 0 15px 0;
    border-left: 2px solid #000000;
    padding-left: 20px;
    font-weight: 600;
    font-style: normal;
}

.country-section {
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.country-content {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 25px;
}

.country-text {
    flex: 2;
}

.country-left {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.country-image {
    flex: 1;
    text-align: center;
}

.country-image img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stats-inline {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 65px;
}

.stat-card-small {
    background: #F0B90B;
    color: #000000;
    padding: 15px 12px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.2);
    flex: 1;
    min-width: 100px;
}

.stat-card-small:hover {
    transform: translateY(-3px);
    background: #F0B90B;
    color: #000000;
}

.stat-number-small {
    font-family: 'Times New Roman', Times, serif;
    font-size: 2.2rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0;
    color: #000000;
}

.stat-label-small {
    font-size: 0.95rem;
    opacity: 1;
    font-weight: 500;
    color: #000000;
}

.country-text p {
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 1rem;
}

.country-text p:last-child {
    margin-bottom: 0;
}

.stats {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin: 20px 0;
}

.stat-card {
    background: #F0B90B;
    color: #000000;
    padding: 20px 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.2);
    flex: 1;
}

.stat-card:hover {
    transform: translateY(-3px);
    background: #F0B90B;
    color: #000000;
}

.stat-number {
    font-family: 'Times New Roman', Times, serif;
    font-size: 3rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0;
    color: #000000;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 1;
    font-weight: 500;
    color: #000000;
}

.story-card {
    background: rgba(240, 185, 11, 0.3);
    padding: 20px;
    border-radius: 15px;
    margin: 15px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #000000;
}

.story-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000000;
    font-style: normal;
    text-align: left;
}

.story-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    margin-top: 5px;
    text-align: center;
    font-style: italic;
}

.story-overview {
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    border-left: 2px solid #F0B90B;
}

.individual-story {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

.story-photo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}

.story-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #F0B90B;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.story-details {
    flex: 1;
}

.story-name {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 8px;
}

.story-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #000000;
}

.highlight-box {
    background: #F0B90B;
    color: #000000;
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.highlight-box h4 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    font-style: normal;
}

.letter-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.letter-section h3 {
    color: #000000;
    border-left: 2px solid #000000;
}

.footer {
    background: #F0B90B;
    color: #000000;
    padding: 20px;
    text-align: center;
    margin-top: 30px;
    border-top: 1.25px solid #000000;
}

.footer p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    color: #000000;
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 20px 15px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

p, .section p, .story-card p, .letter-section p {
    color: #000000;
    font-weight: 400;
}

.country-section p {
    color: #000000;
}

.highlight-box p {
    color: #000000;
}

strong {
    font-weight: 600;
    color: inherit;
}

em {
    font-style: italic;
    color: inherit;
}

.impact-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.impact-image {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.impact-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.impact-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.impact-image-caption {
    font-family: 'Times New Roman', Times, serif;
    font-size: 0.9rem;
    color: #000000;
    text-align: center;
    margin-top: 10px;
    font-weight: 500;
}

.story-card-with-image {
    background: rgba(240, 185, 11, 0.3);
    padding: 20px;
    border-radius: 15px;
    margin: 15px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #000000;
}

.story-image-content {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 15px;
}

.story-main-image {
    flex: 1;
    text-align: center;
}

.story-main-image img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.story-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-main-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000000;
    font-style: normal;
}

.country-section h3 {
    color: #000000;
    border-left: 4px solid #000000;
    margin-bottom: 20px;
    margin-top: 0;
}

.highlight-numbers {
    font-weight: bold;
    color: #000000;
}

.surgery-story {
    background: rgba(240, 185, 11, 0.3);
    padding: 25px;
    border-radius: 15px;
    margin: 15px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #000000;
}

.surgery-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.surgery-image {
    flex: 1;
    text-align: center;
}

.surgery-image img {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.surgery-text {
    flex: 1.2;
}

.surgery-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 18px;
    color: #000000;
    font-style: normal;
}

.surgery-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
}

.surgery-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.surgery-stat {
    text-align: center;
    flex: 1;
}

.surgery-stat-number {
    font-family: 'Times New Roman', Times, serif;
    font-size: 2rem;
    font-weight: bold;
    color: #000000;
    display: block;
}

.surgery-stat-label {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.success-story {
    background: rgba(240, 185, 11, 0.3);
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #000000;
}

.success-story-content {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.success-story-image {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
}

.success-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #F0B90B;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.success-story-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.success-story-text {
    flex: 1;
}

.success-story-name {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.4rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-story-age {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
    font-weight: normal;
    background: rgba(255, 255, 255, 0.7);
    padding: 3px 8px;
    border-radius: 12px;
    font-style: italic;
}

.success-story-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .header .quote {
        white-space: normal;
        max-width: 100%;
        font-size: 1.2rem;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 8px;
    }
    
    .section {
        padding: 20px;
    }
    
    .section-logo {
        width: 70px;
        height: 70px;
        top: 5px;
        right: 15px;
    }
    
    .stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .country-content {
        flex-direction: column;
        gap: 15px;
    }

    .country-left {
        gap: 15px;
    }

    .stats-inline {
        flex-direction: column;
        gap: 10px;
    }

    .stat-card-small {
        min-width: auto;
    }
    
    .individual-story {
        flex-direction: column;
        text-align: center;
    }
    
    .story-photo {
        width: 100px;
        height: 100px;
    }
    
    .story-image-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .story-main-image img {
        max-height: 200px;
    }
    
    .surgery-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .surgery-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .success-story-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .success-story-image {
        width: 140px;
        height: 140px;
    }
    
    .impact-gallery {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .impact-image {
        min-height: 200px;
    }
    
    .impact-image img {
        height: 180px;
    }
}

.letter-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.letter-image {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.letter-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.letter-image img {
    width: 100%;
    height: auto;
    min-height: 450px;
    max-height: 600px;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1200px;
    max-height: 90%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.close:hover {
    color: #F0B90B;
}

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

@media (max-width: 768px) {
    .letter-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .letter-image {
        min-height: 400px;
    }
    
    .letter-image img {
        min-height: 350px;
        max-height: 500px;
    }
    
    .modal-content {
        width: 95%;
        max-height: 85%;
    }
    
    .close {
        top: 20px;
        right: 30px;
        font-size: 30px;
    }
}

.thank-you-text {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thank-you-text h3 {
    font-family: 'Times New Roman', Times, serif;
    color: #000000;
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    border-left: 4px solid #000000;
    padding-left: 20px;
    font-weight: 600;
    font-style: normal;
}

.thank-you-text p {
    color: #000000;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 15px;
}

.thank-you-text p:last-child {
    margin-bottom: 0;
}

.country-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 30px 0;
    justify-items: center;
}

.country-nav-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 8px;
    text-decoration: none;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 220px;
    width: 220px;
}

.country-nav-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: #F0B90B;
    color: #000000;
}

.country-nav-image {
    width: 200px;
    height: 180px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.country-nav-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.country-nav-content h4 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: inherit;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.country-nav-flag {
    width: 20px;
    height: auto;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .country-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 25px 0;
    }
    
    .country-nav-item {
        padding: 6px;
        min-height: 180px;
        width: 180px;
    }
    
    .country-nav-image {
        width: 165px;
        height: 150px;
        margin-bottom: 6px;
    }
    
    .country-nav-content h4 {
        font-size: 1rem;
        gap: 6px;
    }
    
    .country-nav-flag {
        width: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .header h1 {
        font-size: 1.6rem;
    }
    
    .header .charity-subtitle {
        font-size: 1.1rem;
    }
    
    .header .quote {
        font-size: 1rem;
        padding-left: 15px;
    }
    
    .section {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .section h2 {
        font-size: 2rem;
        gap: 10px;
    }
    
    .country-nav-item {
        min-height: 160px;
        width: 160px;
        padding: 4px;
    }
    
    .country-nav-image {
        width: 150px;
        height: 130px;
    }
    
    .country-nav-content h4 {
        font-size: 0.9rem;
    }
    
    .success-story {
        padding: 15px;
    }
    
    .success-story-image {
        width: 120px;
        height: 120px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .country-nav {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .country-nav-item {
        width: 100%;
        max-width: 280px;
        min-height: 140px;
    }
    
    .header h1 {
        font-size: 1.4rem;
    }
}
