.sub_landing_page {
    background-color: var(--santco_color);
    height: auto; /* Adjust height to fit content */
    padding-bottom: 4rem; /* Add some padding at the bottom */
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: flex-start; /* Align items to the start of the flex container */
}

.sub_landing_header {
    font-size: 2.5rem;
    font-weight: 700;
    padding-top: 4rem;
    padding-left: 7rem; /* Align left padding with the description */
    margin-top: 0;
}

.sub_landing_description {
    font-size: 18px;
    font-weight: 250;
    text-align: justify;
    width: 70%; /* Adjust width as needed */
    line-height: 1.5;
    margin-top: 1rem;
}

.application_button {
    background-color: rgb(39, 39, 41); /* Adjusted for proper RGB syntax */
    color: white;
    font-size: 25px;
    font-weight: 350;
    margin-top: 1rem;
    align-self: flex-end; /* Align button to the right on PC */
    border-radius: 12px;
    padding: 15px 25px; /* Adjust padding as needed */
    cursor: pointer;
    transition: filter 0.3s ease; /* Add transition for color and filter */
    border: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
    margin-right: 3rem;
}

.application_button:hover {
    filter: brightness(1.2); /* Increase brightness by 20% on hover */
}

.description_button_container {
    display: flex;
    justify-content: space-between; /* Space evenly between items */
    align-items: flex-start; /* Align children at the start */
    margin-left: 7rem; /* Adjust margin as needed */
    margin-right: 7rem; /* Adjust margin as needed */
}
