body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.footer {
    height: 50px;
    color: white;
    background-color: #1F2937;
    font-family: Roboto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header,
.header-subsection {
    padding-left: 150px;
    padding-right: 150px;
    color: white;
    background-color: #1F2937;
    font-family: Roboto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-subsection {
    min-height: 40vh;
}

.header-subsection-left,
.header-subsection-right {
    max-width: 50vh;
}

.header-subsection-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.header-subsection-left-main-text {
    font-size: 24px;
    color: #F9FAF8;
    font-weight: 900;
    flex: 0;
}

.header-subsection-left-secondary-text {
    font-size: 18px;
    color: #E5E7EB;
    flex: 0;
}


.header-subsection-left-button {
    background-color: #3882F6;
    /* Button / CTA color */
    color: white;
    /* Text color for contrast */
    padding: 12px 24px;
    /* Space inside the button */
    border-radius: 8px;
    /* Curved corners */
    text-align: center;
    /* Center text */
    font-size: 16px;
    /* Readable font size */
    font-weight: 600;
    /* Slightly bold text */
    cursor: pointer;
    /* Pointer cursor on hover */
    display: inline-block;
    /* Let it behave like a button */
    transition: background-color 0.3s ease;
    /* Smooth hover effect */
    max-width: 100px;
    flex-grow: 0;
}

.header-subsection-left-button:hover {
    background-color: #2c6dd4;
    /* Slightly darker shade on hover */
}

.header-subsection-right {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 400px;
    height: 200px;
    background-color: #6b7280;
    /* Medium gray */
    display: flex;
    /* Center text horizontally & vertically */
    justify-content: center;
    align-items: center;
    color: white;
    /* White placeholder text */
    font-size: 14px;
    font-family: sans-serif;
}

.information,
.quote {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-left: 250px;
    padding-right: 250px;
    padding-bottom: 50px;
}

.information-header {
    font-size: 36px;
    color: #1F2937;
    font-weight: 900;
    padding: 10px;
}

.information-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    max-width: 150px;
}


.blue-box {
    width: 120px;
    /* Size of the box */
    height: 120px;
    border: 3px solid #3882F6;
    /* Blue outline */
    border-radius: 12px;
    /* Curved corners */
    margin: 0 auto;
    /* Center horizontally */
}

.subtext {
    text-align: center;
    /* Center text under box */
    color: #6b7280;
    /* Grayish text color */
    font-size: 14px;
    margin-top: 8px;
    /* Space between box and text */
    font-family: sans-serif;
}

.quote {
    background-color: lightgrey;
    padding-top: 50px;
}

.quote-content {
    font-style: italic;
    font-size: 36px;
    color: #1F2937;
    font-weight: 300;
}

.quote-content-author {
    align-self: flex-end;
    font-size: 24px;
    font-weight: 900;
}

.action {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #3882F6;
    margin: 100px;
    height: 200px;
    gap: 50px;
    color: white;
}

.action-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.action-content-header {
    font-size: 18px;
    font-weight: 900;
}

.action-button{
    background-color: white ;
    /* Button / CTA color */
    color: #3882F6;
    /* Text color for contrast */
    padding: 12px 24px;
    /* Space inside the button */
    border-radius: 8px;
    /* Curved corners */
    text-align: center;
    /* Center text */
    font-size: 16px;
    /* Readable font size */
    font-weight: 600;
    /* Slightly bold text */
    cursor: pointer;
    /* Pointer cursor on hover */
    display: inline-block;
    /* Let it behave like a button */
    transition: background-color 0.3s ease;
    /* Smooth hover effect */
    max-width: 100px;
    flex-grow: 0;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    display: flex;
    flex-direction: row;
}

.secondary {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
}