.landing-container {
    text-align: center;
    padding-top: 100px;
    font-family: Arial, sans-serif;
}

.title {
    font-size: 3em;
    margin-bottom: 40px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex: 0 0 auto;
}

.nav-button {
    font-size: 1.2em;
    padding: 10px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    background-color: #FFCB05;
    border-color: black;
    border: 0px;
    flex: 0 0 auto;
    color: white !important;
    font-weight: bold;
    text-decoration: none;
}

.nav-button:hover {
    background-color:  #54565A!important;
    flex: 0 0 auto;
    color: white !important;      
    text-decoration: none;
}

.nav-button:visited,
.nav-button:focus,
.nav-button:active {
    color: white !important;      
    text-decoration: none;
}

.col-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    gap: 20px;
    justify-content: stretch;
}

.flex-fill {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.dashboard-img {
    max-width: 100%;
    height: auto;
}

.description-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    text-align: justify;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-header {
    font-size: 28px;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}