body {
    font-family: Inter;
}

.navigation-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1252px;
    margin: 0 auto;
    text-align: center;
    justify-content: flex-start;
    margin: 12vh auto;
}

.heading {
    font-size: 26pt;
    padding: 0;
    text-wrap: balance;
    color: #161616;
    max-width: 400px;
    margin: 22px auto;
    letter-spacing: 1px;
}

.subheading {
    font-size: 16pt;
    margin: 0 auto;
    max-width: 700px;
    padding: 0;
    text-wrap: balance;
    font-weight: 300;
}

.h3-heading {
    margin-bottom: 30px;
}

.button-group {
    display: flex;
    gap: 20px;
}

.nav-button {
    font-family: "Inter", "Roboto", -apple-system, "San Francisco", "Segoe UI", "Helvetica Neue", sans-serif;
    padding: 12px 22px;
    font-size: 16px;
    font-weight: 500;
    color: white;
    background-color: #3b82f6;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;

}

.nav-button:active {
    transform: translateY(0);
}

.nav-button {
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: #0075de;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-button:active {
    transform: translateY(0);
}

.nav-button.disabled {
    background-color: light-dark(rgba(239, 239, 239, 0.3), rgba(19, 1, 1, 0.3));
    color: light-dark(rgba(16, 16, 16, 0.3), rgba(255, 255, 255, 0.3));
    border-color: light-dark(rgba(118, 118, 118, 0.3), rgba(195, 195, 195, 0.3));
    cursor: not-allowed;
    transition: none !important;
    transform: none !important;
    box-shadow: none !important;
}

.nav-button.disabled:hover,
.nav-button.disabled:active {
    background: inherit !important;
    transform: none !important;
    box-shadow: none !important;
}