/*----- body -----*/

body {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 19px;
    color: #333333;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/*----- header -----*/

header {
    padding: 25px 0;
    color: #333333;
    background-color: #F2F2F2;
}

header .navigation-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*----- fixed header -----*/

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/*----- navigation -----*/

.navigation-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
}

/*----- main -----*/

main {
    margin-top: 110px;/* for fixed header */
    background-color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
}

main a {
    color: #333333;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}

/*----- content -----*/

.content-container {
    margin: 75px 0 75px;
    padding: 20px;
}

.content {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
}

.content p {
    margin: 35px 0;
}

.content p:last-child {
    margin-bottom: 0;
}

.content ul {
    margin: 0;
}

.content ul li {
    margin-bottom: 12px;
}

.content ul li:last-child {
    margin-bottom: 0;
}

/*----- h1 -----*/

.h1 {
    text-align: center;
    margin-bottom: 50px;
}

h1 {
    font-size: 27px;
    display: inline-block;
    position: relative;
    margin: 0;
}

h1::after {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background-color: #EC008C;
    position: absolute;
    left: 0;
    bottom: -10px;
}

/*----- h2 -----*/

.h2 {
    text-align: center;
    margin-bottom: 50px;
}

h2 {
    font-size: 27px;
    display: inline-block;
    position: relative;
    margin: 0;
}

/*----- h3 -----*/

.h3 {
    text-align: left;
    margin-bottom: 20px;
}

h3 {
    font-size: 22x;
    display: inline-block;
    position: relative;
    margin: 0;
}

h3::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #EC008C;
    position: absolute;
    left: 0;
    bottom: -5px;
}

/*----- h4 -----*/

h4 {
    margin: 50px 0 12px;
}

/*----- h5 -----*/

h5 {
    font-size: 19px;
    margin: 0;
}

/*----- boxes -----*/

.boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: stretch;
}

.box {
    flex: 1;
    min-width: 200px;
    background-color: #F2F2F2;
    padding: 10px;
    box-sizing: border-box;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    border: 1px solid #333333;
}

.box p {
    margin: 0;
}

/*----- footer -----*/

footer {
    padding: 25px 0;
    color: #333333;
    background-color: #F2F2F2;
}

footer .navigation-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*----- mobile -----*/

@media (max-width: 768px) {

    .content-container {
        margin: 45px 0 45px;
    }

}