html, body {
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.section {
    background-color: #f4f4f4;
    flex-grow: 1;
    padding: 4.6rem;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn {
    padding: 0.75rem;
    text-align: center;
    text-decoration: none;
    color: white;
    border-radius: 15px;
    width: 100%;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.btn-white-blue {
    background-color: white;
    color: #467CD6;
    border: 2px solid #467CD6;
}

.btn-white-blue:hover {
    background-color: #467CD6;
    color: white;
}

.btn-blue-white {
    background-color: #467CD6;
    color: white;
}

.btn-blue-white:hover {
    background-color: white;
    color: #00aaff;
    border: 2px solid #00aaff;
}

.section1-content {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section1-text {
    padding: 1rem;
}

.section1-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.section1-text p {
    font-size: 1rem;
    margin-top: 5px;
}

@media (min-width: 1024px) {
    .section1-text h2 {
        font-size: 2rem;
        font-weight: 600;
    }

    .section1-text p {
        font-size: 1.5rem;
    }
}
