body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f6f8fa;
    color: #222;
}
.full-width-image {
    margin-top: 60px;
    margin-bottom: 32px;
    width: 100%;
    position: relative;
}

.full-width-image img {
    width: 100%;
    height: auto;
    max-height: 60vh;
    min-height: 300px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    object-fit: cover;
    display: block;
}

.main-header {
    background: #369794;
    color: #fff;
    padding: 18px 0 10px 0;
}
.logo-title {
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo {
    height: 200px;
    width: 200px;
    object-fit: contain;
}
.site-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.coming-soon-banner {
    text-align: center;
    font-size: 22px;
    margin-top: 8px;
    color: #e0f7fa;
    letter-spacing: 1px;
}
main {
    max-width: 1100px;
    margin: 32px auto;
    background: #fff;
    border-radius: 18px;
    padding: 32px 24px;
}
.intro-section {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
    margin-bottom: 32px;
}
.intro-text {
    flex: 2 1 340px;
    min-width: 280px;
}
.intro-text h2 {
    color: #2b7a78;
    margin-bottom: 0.2em;
}
.tagline {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 0.7em;
}
.intro-images {
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.intro-images img {
    width: 100%;
    height: auto;
    max-height: 250px;
    min-height: 180px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #e0f7fa;
    background: #e0f7fa;
}
.content-section {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    margin-bottom: 32px;
}
.left-content, .right-content {
    flex: 1 1 340px;
    min-width: 280px;
}
.left-content h3, .right-content h3 {
    color: #2b7a78;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
}
.left-content ul, .right-content ul {
    margin: 0 0 1em 1.2em;
}
.image-collage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(43,122,120,0.08);
    background: #e0f7fa;
    padding: 8px;
    margin-bottom: 18px;
}
.image-collage img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.2s;
}
.image-collage img:hover {
    transform: scale(1.06);
    box-shadow: 0 2px 8px rgba(43,122,120,0.15);
}
.impact-section, .radio-section, .education-section, .get-involved-section, .leadership-section, .contact-section {
    margin-bottom: 32px;
}
.impact-section h3, .radio-section h3, .education-section h3, .get-involved-section h3, .leadership-section h3, .contact-section h3 {
    color: #2b7a78;
}
.impact-section ul, .radio-section ul, .education-section ul, .get-involved-section ul {
    margin: 0 0 1em 1.2em;
}
.case-stories blockquote {
    background: #e0f7fa;
    border-left: 5px solid #2b7a78;
    margin: 1em 0;
    padding: 12px 18px;
    border-radius: 8px;
    font-style: italic;
    color: #333;
}
.case-stories span {
    display: block;
    margin-top: 6px;
    font-size: 0.98em;
    color: #2b7a78;
    font-weight: 500;
}
footer {
    text-align: center;
    margin: 32px 0 12px 0;
    color: #888;
    font-size: 1.1rem;
}
@media (max-width: 900px) {
    main {
        padding: 18px 4vw;
    }
    .intro-section, .content-section {
        flex-direction: column;
        gap: 24px;
    }
    .intro-images img {
        width: 100%;
        max-width: 320px;
        height: 120px;
    }
    .image-collage {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .logo-title {
        flex-direction: column;
        gap: 8px;
    }
    .site-title {
        font-size: 1.3rem;
    }
    .intro-images img {
        height: 90px;
    }
    .image-collage {
        grid-template-columns: 1fr;
    }
}

.contact-section {
  background: #e0f7fa;
    border-left: 5px solid #2b7a78;
    margin: 1em 0;
    padding: 12px 18px;
    border-radius: 8px;
    font-style: italic;
    color: #333;
}