html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', system-ui, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f9fafb;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-weight: 700;
    font-size: 36px;
    line-height: 120%;
    color: #1a5c9e;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.section-title--underline {
    border-bottom: 2px solid #1a5c9e;
    padding-bottom: 16px;
}

.section-title--white{
    color: #f0f4f8;
    border-bottom: 2px solid #f0f4f8;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1a5c9e;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    padding: 16px 48px;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary:hover {
    background: #0d3a5c;
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

.list-dots {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-dots li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.list-dots li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1a5c9e;
    font-size: 18px;
    line-height: 150%;
}


@media (max-width: 430px) {
    .mobile-container{
        padding: 0 16px;
    }
}

@media (min-width: 431px) and (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
}