﻿.container {
    max-width: 800px;
    margin: 0 auto;
}

.title-center {
    text-align: center;
    width: 100%;
    margin-bottom: 1rem;
}

.big-title {
    font-size: 2.2rem;
    font-weight: bold;
}

.big-subtitle {
    font-size: 1.4rem;
    color: #555;
}

.button-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    font-size: 18px;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: 0.3s ease;
    display: inline-block;
}

    .btn:hover {
        transform: scale(1.05);
        opacity: 0.9;
    }

.btn-primary {
    background-color: #1e87f0;
    border: none;
    color: white;
}

.btn-success {
    background-color: #28a745;
    border: none;
    color: white;
}

.apply-choice .big-title {
    margin-top: 1rem;
    line-height: 0.5;
}

.apply-choice .big-subtitle {
    margin-top: 1rem;
}


@media (min-width: 992px) {
    .apply-choice {
        padding-top: 2rem;
    }
}