body {
    grid-template-rows: auto auto auto;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background-color: #002868;
    color: #fff;
    padding: 1em;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    max-width: 80%;
    margin: auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    margin-bottom: 20px;
}

section > div:first-child {
    justify-content: center;
    align-items: center;
}

section > div:first-child div {
    height: auto;
    background-color: #A7293F;
    border-radius: 5vw;
}

section > div:first-child div p {
    text-align: center;
    color: #fff;
    padding: 0px 10px;
}

section * {
    margin: 10px;
}

section div {
    display: flex;
    flex-direction: row;
    flex: 1 1 0;
    height: 20%;
}

section div div {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width: 30%;
}

.main_img {
    border-bottom: #002868 solid 4px;
    border-radius: 5%;
    padding-bottom: 15px;
}

.main_img img {
    border-radius: 50%;
    max-width: 35%;
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.subcontent {
    height: fit-content;
}

img {
    height: 15vh;
}

section p {
    line-height: 2;
    font-size: 2.45vh;
    color: #333;
}

section a {
    color: #3498db;
    text-decoration: none;
}

section a:hover {
    text-decoration: underline;
}

footer{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    background-color: #7C8D9D;
    color: #fff;
    position: relative;
    width: 100%;
}

.social-media-footer {
    display: flex;
        padding: 1em;
}

.social-media-footer a {
    display: flex;
    align-items: center;
    color: #fff;
    margin: 0px 2px;
    text-decoration: none;
}