* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inclusive Sans", sans-serif;
    line-height: 32px;
    font-size: 20px;
    font-weight: 400;
    color: #000E16;
    background-color: #fff;
}

.container {
    max-width: 986px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: white;
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.language {
    display: flex;
    justify-content: flex-end;
    padding: 0 20px;
    margin-bottom: 20px;
}

.language .language-switch {
    color: #003795;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 10px;
    transition: opacity 0.3s;
}

.language .language-switch:hover {
    opacity: 0.7;
}

.logo {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    
}

.logo img {
    max-width: 400px;
    width: 100%;
    height: 50px;
}





/* Main Content */
main {
    background-color: white;
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}

.main-title {
    font-size: 56px;
    font-weight: 400;
    color: #000E16;
    margin-bottom: clamp(40px, calc(16px + 7.5vw), 160px);
    line-height: 64.4px;
    font-family: "Fraunces", serif;
    display: flex;
    justify-content: center;
    text-align: center;
}

.content-section {
    margin-bottom: 80px;
}

.content-section h3 {
    font-size: 40px;
    font-weight: 400;
    line-height: 46px;
    color: #000E16;    
    margin-bottom: 24px;
    font-family: "Fraunces", serif;
}

.content-section p {
    margin-bottom: 20px;
    text-align: left;
    color: #000E16;
}

.content-section ul {
    list-style: none;
    margin-left: 0;
    margin-bottom: 24px;
}

.content-section li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    line-height: 32px;
}

.content-section li::before {
    content: "";
    width: 24px;
    height: 1px;
    background-color: #003795;
    flex: 0 0 24px;
    margin-top: calc((1.5em - 1px) / 2);
}

.content-section a {
    color: #003795;
    text-decoration: none;
    font-weight: 700;

}

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

.content-section strong {
    font-weight: 600;
}


/* Responsive */
@media (max-width: 768px) {
    body {     
        line-height: normal;
        font-size: 16px;        
    }
    
    .main-title {
        font-size: 40px;
        line-height: normal;
    }
    
    .content-section h3 {
        font-size: 20px;
    }
    
    .container {
        padding: 0 15px;
    }

    .content-section li {
        line-height: normal;
    }
}
