* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #FFFCFB;
    color: #093FB4;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #FFFCFB;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(9, 63, 180, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 100px;
    height: auto;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.10);
}

/* .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #093FB4;
}

.logo-icon {
    width: 8px;
    height: 20px;
    background-color: #005461;
} */

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: #093FB4;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #005461;
}

.donate-btn {
    background-color: #005461 !important;
    color: #FFFCFB !important;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: 600;
    transition: transform 0.3s;
}

.donate-btn:hover {
    transform: scale(1.05);
    color: #FFFCFB !important;
}

.page {
    display: none;
}

.page.active {
    display: block;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    margin: 40px 0;
   /* background-image: url('https://images.unsplash.com/photo-1559027615-cd4628902d4a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80');*/
    background-image: url(https://images.unsplash.com/photo-1740208376134-67da8e85ccf3?q=80&w=1332&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   /* background: linear-gradient(135deg, rgba(0, 84, 97, 0.4) 0%, rgba(9, 63, 180, 0.4) 100%); */
   background-color: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.hero-content {
    border-radius: 30px;
    padding: 100px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #0a0a0a;
    z-index: 2;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero p {
    font-size: 16px;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

.hero-btn {
    display: inline-block;
    background-color: #61200a;
    color: #dff2f5;
    padding: 15px 30px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s;
}

.hero-btn:hover {
    transform: scale(1.05);
}

/* Impact Section */
.impact-section {
    padding: 60px 0;
    border: 2px solid rgba(9, 63, 180, 0.1);
    border-radius: 30px;
    margin: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #093FB4;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 40px;
}

.impact-card {
    background-color: #005461;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    color: #FFFCFB;
    transition: transform 0.3s;
}

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-card.alt {
    background-color: #093FB4;
}

.impact-number {
    font-size: 48px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.impact-label {
    font-size: 16px;
    font-weight: 600;
}

/* Programs Section */
.programs-section {
    padding: 80px 0;
}

.programs-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.program-card {
    border: 2px solid rgba(9, 63, 180, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #FFFCFB;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(9, 63, 180, 0.15);
}

.program-image {
    height: 180px;
   background: linear-gradient(135deg, #005461 0%, #093FB4 100%);
    /*background-color: #093FB4;*/
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.program-image.alt1 {
    background: linear-gradient(135deg, #093FB4 0%, #005461 100%);
}

.program-image.alt2 {
    background: linear-gradient(135deg, #005461 30%, #093FB4 100%);
}

.program-content {
    padding: 25px;
}

.program-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #093FB4;
}

.program-description {
    font-size: 14px;
    color: #093FB4;
    line-height: 1.6;
}

/* Stories Section */
.stories-section {
    padding: 80px 0;
    border: 2px solid rgba(9, 63, 180, 0.1);
    border-radius: 30px;
    margin: 60px 0;
}

.stories-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 40px;
}

.story-card {
    border: 2px solid rgba(9, 63, 180, 0.15);
    border-radius: 20px;
    overflow: hidden;
    background-color: #FFFCFB;
    transition: transform 0.3s;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-image {
    height: 200px;
    /*background: linear-gradient(135deg, #005461 0%, #093FB4 100%);*/
    background-image: url(https://images.unsplash.com/photo-1707811179851-c1f93698ad46?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-size: 120%;
    background-position: center;
    background-repeat: no-repeat;
}

.story-image.alt {
    height: 200px;
    /*background: linear-gradient(135deg, #005461 0%, #093FB4 100%);*/
    background-image: url(https://images.unsplash.com/photo-1609943878727-3c680987a482?q=80&w=388&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.story-image.alt1 {
    height: 200px;
    /*background: linear-gradient(135deg, #005461 0%, #093FB4 100%);*/
    background-image: url(https://images.unsplash.com/photo-1719245309441-c577e0d1959d?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.story-content {
    padding: 25px;
}

.story-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #093FB4;
}

.story-text {
    font-size: 14px;
    color: #093FB4;
    line-height: 1.6;
    margin-bottom: 15px;
}

.story-author {
    font-size: 13px;
    color: #005461;
    font-weight: 600;
}

/* About Page */
.about-hero {
    padding: 60px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #093FB4;
}

.about-hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: #093FB4;
}

.founder-message {
    border: 2px solid rgba(9, 63, 180, 0.15);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 60px 0;
    background-color: #FFFCFB;
}

.founder-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #005461 0%, #093FB4 100%);
    flex-shrink: 0;
}

.founder-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #093FB4;
}

.founder-content p {
    font-size: 14px;
    color: #093FB4;
    line-height: 1.6;
    margin-bottom: 10px;
}

.founder-name {
    font-size: 13px;
    font-style: italic;
    color: #005461;
}

.read-letter-btn {
    background-color: #005461;
    color: #FFFCFB;
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-left: auto;
    transition: transform 0.3s;
}

.read-letter-btn:hover {
    transform: scale(1.05);
}

/* Values Section */
.values-section {
    margin-top: 60px;
}

.values-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #093FB4;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    border: 2px solid rgba(9, 63, 180, 0.15);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    background-color: #FFFCFB;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(9, 63, 180, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: #005461;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.value-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #093FB4;
}

.value-description {
    font-size: 14px;
    color: #093FB4;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 80px 0;
}

.cta-card {
    border-radius: 20px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.cta-card.volunteer {
    background: linear-gradient(135deg, #005461 0%, #093FB4 100%);
    color: #FFFCFB;
}

.cta-card.donate {
    background: linear-gradient(135deg, #093FB4 0%, #005461 100%);
    color: #FFFCFB;
}

.cta-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-card p {
    font-size: 14px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-button {
    background-color: #FFFCFB;
    color: #005461;
    padding: 12px 30px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    border: 2px solid rgba(9, 63, 180, 0.15);
    padding: 40px;
    border-radius: 20px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #093FB4;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #005461;
    font-weight: 600;
}

.contact-item p {
    font-size: 14px;
    color: #093FB4;
}

.contact-form {
    border: 2px solid rgba(9, 63, 180, 0.15);
    padding: 40px;
    border-radius: 20px;
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #093FB4;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #093FB4;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(9, 63, 180, 0.15);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background-color: #FFFCFB;
    color: #093FB4;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #005461;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: #005461;
    color: #FFFCFB;
    padding: 12px 40px;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s;
}

.submit-btn:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    border-top: 2px solid rgba(9, 63, 180, 0.1);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 40px;
    width: 100%;
}

.footer-section {
    width: 100%;
}

.footer-section h4 {
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #093FB4;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #093FB4;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #005461;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo-icon {
    width: 6px;
    height: 16px;
    background-color: #005461;
}

.footer-description {
    font-size: 13px;
    color: #093FB4;
    line-height: 1.6;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #f7f7f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #093FB4;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.3s, background-color 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
    background-color: #093FB4;
    color: #FFFCFB !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 2px solid rgba(9, 63, 180, 0.1);
    font-size: 14px;
    color: #093FB4;
}

.footer-bottom a {
    color: #005461;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #093FB4;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-content {
        padding: 60px 30px;
    }

    .founder-message {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu {
        gap: 20px;
        flex-wrap: wrap;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}