main {
    padding: 22px;
}
 
.intro-section {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
}

.intro-section img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
}

.intro-text h1 {
    font-size: 28px;
    margin-bottom: 6px;
}

.intro-text h2 {
    font-size: 20px;
    margin-bottom: 4px;
}

.intro-text h3 {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 6px;
}   

.subtext {
    font-style: italic;
    margin: 0;
}

.mission-section {
    margin-bottom: 22px;
}

.mission-section p {
    font-size: 16px;
    line-height: 1.4;
}

.about-container {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.about-box {
    width: 31%;
    height: 210px;
    border: 2px solid #8b1e14;
    border-radius: 18px;
    padding: 12px 14px;
    box-sizing: border-box; 
    overflow: scroll;
}

.about-box h2 {
    margin-bottom: 8px;
}

.about-box ul {
    margin: 0;
    padding-left: 22px;
}

.about-box p {
    margin: 0;
    line-height: 1.35;
} 

/* mobile */ 
@media only screen and (max-width: 796px) {

    .intro-section {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
    }

    .intro-section img {
        width: 120px;
        height: 120px;
        border-radius: 0;
        margin-right: 12px;
    }

    .intro-text h1 {
        font-size: 20px;
    }
    .intro-text h2 {
        font-size: 16px;
    }

    .intro-text h3 {
        font-size: 14px;
    }

    .about-container { 
        flex-direction: column;
    }

    .about-box {
        width: 100%;
        height: auto;
    }
} 
@media (max-width: 430px) {
    .about-container {
        flex-direction: column;
        gap: 14px;
    }
    .about-box {
        width: 100%;
        height: auto;
        overflow: visable;
    }
    body {
        font-size: 16px;
    }
    h2 {
        font-size: 20px;
    }
    p {
        font-size: 15px;
        line-height: 1.5;
    }
    main {
        padding: 12px;
    }
}