body {
    margin: 0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    box-sizing: border-box;
    background-color: #f8f9fa;
}

*, *:before, *:after {
    box-sizing: inherit;
}

.hero-section {
    height: 60vh;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background-image: url('../image/Communityengagement.png');
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content h1 .icon {
    margin-right: 10px;
    font-size: 3.2rem;
    opacity: 0.9;
}

.hero-content p {
    font-size: 1.35rem;
    margin-top: 0.5rem;
    font-weight: 300;
    max-width: 600px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.content-section {
    max-width: 1250px;
    margin: 4rem auto;
    padding: 0 1rem;
    background-color: transparent;
}

.content-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(5, 44, 0);
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 3px solid #052c00;
    display: table;
    padding-bottom: 0.4rem;
    line-height: 1.1;
    margin-left: auto;
    margin-right: auto;
}

.content-section-title .icon {
    margin-right: 12px;
    font-size: 2.25rem;
    color: rgb(5, 44, 0);
    opacity: 0.8;
}

.content-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
}

.content-card h2 {
    font-size: 2rem;
    font-weight: 600;
    color: rgb(5, 44, 0);
    margin-top: 0;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.75rem;
}

.content-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-card h3:first-of-type {
    margin-top: 0;
}

.content-card h2 .icon, .content-card h3 .icon {
    margin-right: 12px;
    font-size: 1.75rem;
    color: rgb(5, 44, 0);
    opacity: 0.8;
}
.content-card h3 .icon {
    font-size: 1.25rem;
}

.content-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.content-card p:first-child {
    margin-top: 0;
}

.content-card ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.content-card li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #555;
}

.content-card li::before {
    content: '\f138';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: rgb(5, 44, 0);
    opacity: 0.7;
}

.quote-box {
    background-color: #f8f9fa;
    border-left: 5px solid rgb(5, 44, 0);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}
.quote-box cite {
    display: block;
    margin-bottom: 0.5rem;
    font-style: normal;
    font-weight: 700;
    color: rgb(5, 44, 0);
    font-size: 1.2rem;
}
.quote-box blockquote {
    margin: 0;
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    line-height: 1.7;
}

.alert-box-summary {
    background-color: #f7fff7;
    border: 1px solid #052c00;
    border-left-width: 5px;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

.alert-box-summary h3 {
    color: #052c00;
    margin-top: 0;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.alert-box-summary p {
    color: #333;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content h1 .icon {
        font-size: 2.25rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    
    .content-section {
        margin: 2rem auto;
        padding: 0 1rem;
    }
    
    .content-section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .content-section-title .icon {
        font-size: 1.75rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    .content-card h2 {
        font-size: 1.75rem;
    }
    .content-card h2 .icon {
        font-size: 1.5rem;
    }
    .content-card h3 {
        font-size: 1.25rem;
    }
    .quote-box {
        padding: 1rem 1.5rem;
    }
    .quote-box blockquote {
        font-size: 1rem;
    }
}