.intro {
    text-align: center;
    max-width: 900px;
    margin: 2rem auto 3rem auto;
    padding: 0 1rem;
}

.intro h1 {
    font-size: 2.5rem;
    color: #2d6a4f;
    margin-bottom: 0.5rem;
}

.intro h2 {
    font-size: 1.8rem;
    color: #e76f51;
    margin-bottom: 1rem;
}

.intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #3d5a3f;
    max-width: 750px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    background: linear-gradient(135deg, #fff9ef, #fff5e6);
    border-radius: 24px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature h2 {
    color: #2d6a4f;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature h3 {
    color: #e76f51;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature figure {
    margin: 1rem auto;
    max-width: 300px;
}

.feat-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #f4a261;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 0 auto;
}

.feat-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature figcaption {
    margin-top: 1rem;
}

.a_hyperlink {
    display: inline-block;
    background: #2d6a4f;
    color: #fff;
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.a_hyperlink:hover {
    background: #1b4d3e;
    transform: translateY(-2px);
}

.main_content {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.about_us_header {
    color: #2d6a4f;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.main_content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.main_content figure {
    text-align: center;
    margin: 1.5rem 0;
}

.main_content img {
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.main_content figcaption {
    margin-top: 0.5rem;
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

.award_list {
    background: #fef9e6;
    border-radius: 16px;
    padding: 1.5rem 1.5rem 1.5rem 3rem;
    margin: 1rem 0;
    list-style-type: none;
}

.award_list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}


.main_content:last-of-type {
    text-align: center;
    background: linear-gradient(135deg, #2d6a4f, #1b4d3e);
    color: #fff;
}

.main_content:last-of-type .about_us_header {
    color: #ffedd5;
    border-left-color: #f4a261;
}

.main_content:last-of-type p {
    color: #ffedd5;
}

.main_content:last-of-type .a_hyperlink {
    background: #f4a261;
    color: #2c3e2f;
    margin-top: 0.5rem;
    display: inline-block;
}

.main_content:last-of-type .a_hyperlink:hover {
    background: #e76f51;
    color: #fff;
}

