body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

* {
    box-sizing: border-box;
}

section {
    padding: 10px;
}

.container {
    max-width: 1140px;
    margin: auto;
    display: flex;
}

.col-12 {
    width: 100%;
    padding: 8px;
}

p {
    line-height: 1.5;
    font-size: 16px;
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-2 {
    margin-bottom: 8px;
}

.text-center {
    text-align: center;
}

.font-weight-bold {
    font-weight: bold;
}

.title {
    font-size: 22px;
}

.subtitle {
    font-size: 18px;
}

.align-center {
    align-items: center;
}

@media (min-width: 768px) {
    section {
        padding: 0 20px;
    }

    .row {
        flex-wrap: wrap;
        display: flex;
    }

    .col-md-6 {
        width: 50%;
        padding: 12px;
    }

    .title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 22px;
    }

    p {
        font-size: 18px;
    }

    .vh-100 {
        height: 100vh;
    }
}