/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    font-family: Lato, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
    color: #000000;
    line-height: 1.5;
}

a {
    color: #5b92ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 630px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Typography */
h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 16px 0;
    line-height: 1.4;
}

p {
    margin: 15px 0;
}

ul {
    margin: 15px 0;
    padding-left: 40px;
}

li {
    margin-bottom: 8px;
}

blockquote {
    font-size: 17px;
    margin: 0 0 0 40px;
}

/* Specific layout sections */
.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.header-logo-main {
    max-width: 393px;
    width: 100%;
    height: auto;
}

.header-logo-secondary {
    max-width: 57px;
    width: 100%;
    height: auto;
}

.contact-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 30px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-text {
    flex: 1;
    min-width: 300px;
}

.contact-image-container {
    width: 191px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15px;
}

.contact-image {
    max-width: 100%;
    height: auto;
}

hr {
    border: none;
    border-top: 1px solid #000000;
    margin: 40px 0;
}

.legal-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.legal-column {
    flex: 1;
    min-width: 280px;
}

.legal-column p {
    font-size: 13px; /* Slightly larger than the 10px from email for readability */
}

.legal-column u {
    font-size: 13px;
}

.footer {
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .header {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .contact-section {
        flex-direction: column;
    }
    
    .contact-image-container {
        width: 100%;
        margin-top: 20px;
    }
}
