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

body {
    font-family: Clarika, ui-sans-serif, system-ui, -apple-system,
        BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
        "Noto Sans", sans-serif, "Apple Color Emoji",
        "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    background-color: #fff;
    color: #333;
}

/* Fonts */
@font-face {
    font-family: Clarika;
    src: url(/distribution-map/assets/font/clarika/ClarikaGeoRegular.woff2);
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: Clarika;
    src: url(/distribution-map/assets/font/clarika/ClarikaGeoMedium.woff2);
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: Clarika;
    src: url(/distribution-map/assets/font/clarika/ClarikaGeoDemiBold.woff2);
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: Clarika;
    src: url(/distribution-map/assets/font/clarika/ClarikaGeoBold.woff2);
    font-weight: 700;
    font-display: swap;
}

/* Container (needed so footer/navbar content has max-width) */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Page content */
.section {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    margin-bottom: 70px;
    text-align: center;
}

.section h1 {
    margin-bottom: 50px;
}

.section h2 {
    font-size: 1.5rem;
    max-width: 600px;
    text-align: left;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 10px;
    font-weight: bold;
}

.section ul {
    font-size: 1.2rem;
    text-align: left;
    max-width: 600px;
    margin: auto;
    margin-top: 10px;
    padding-left: 40px;
}

.section ul li {
    text-align: left;
}

.section p {
    font-size: 1.2rem;
    text-align: justify;
    max-width: 600px;
    margin: auto;
}

.section p a {
    text-decoration: none;
    color: #4692da;
    border-bottom: 2px solid #e6eff5;
}

.section p u {
    text-decoration: none;
    color: #555;
    font-weight: bold;
    border-bottom: 2px dashed #ddd;
}

/* CTA button */
.cta-btn {
    background-color: #0286fb;
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.2s ease;
    border: none;
}

.cta-btn:hover {
    background-color: #0270d4;
    color: white;
}

/* Footer fix */
.footer-section {
    width: 100%;
}
