   /* General Styles */
    body {
        margin: 0;
        font-family: 'LindeDaxGlobal';
        background-color: #f9f9f9;
        color: #333;
    }

    .page-container {
        max-width: 1200px;
        margin: 0 auto;
        /* Center the content horizontally */
        padding: 20px;
        color: #003256;
    }

    /* Section Blocks */
    .first-block,
    .image-text-block,
    .text-image-block {
        display: flex;
        gap: 20px;
        margin-bottom: 40px;
    }

    li {
        line-height: 35px;
        font-size: 1.6rem;
        text-indent: -20px;
        padding-left: 20px;
    }

    /* Content Alignment */
    .content-left {
        flex: 1;
        /* Takes 50% of width */
        display: flex;
        flex-direction: column;
        justify-content: unset;
    }

    .content-right {
        flex: 1;
        /* Takes 50% of width */
    }

    .block-image {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }

    /* Headings */
    .main-heading {
        font-size: 3.6rem;
        margin-bottom: 10px;
        font-weight: bolder;
    }

    .section-heading {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    /* Paragraphs */
    .paragraph {
        font-size: 1.6rem;
        margin: 0 0 20px;
        line-height: 1.6;
    }

    /* Buttons */
    .cta-button {
        padding: 12px 40px;
        background-color: #0077CC;
        color: #FFFFFF;
        border: none;
        border-radius: 5px;
        font-size: 1.6rem;
        cursor: pointer;
        transition: background-color 0.3s ease;
        margin-top: 15px;
        width: 250px;
    }

    .cta-button:hover {
        background-color: #005fa3;
        /* Slightly darker blue on hover */
        color: white;
    }

    .scroll-button {
        padding: 10px 20px;
        background-color: #fff;
        border: 2px solid #0077CC;
        color: #0077CC;
        border-radius: 5px;
        font-size: 1rem;
        cursor: pointer;
        margin: 0 10px;
        transition: background-color 0.3s ease;
    }

    .scroll-button:hover {
        background-color: #0077CC;
        color: #fff;
        /* White text */
    }

    /* Subheadings and Separators */
    .content-item {
        margin-bottom: 20px;
    }

    .content-topic {
        font-weight: bold;
        font-size: 1.6rem;
        margin: 10px 0;
    }

    .separator {
        border: 0;
        height: 1px;
        background: #e0e0e0;
        /* Light gray for separator */
        margin: 20px 0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        section {
            flex-direction: column;
            /* Stack sections vertically */
            gap: 20px;
        }

        .content-left,
        .content-right {
            flex: none;
            /* Reset flex to fit content */
        }

        .cta-button,
        .scroll-button {
            font-size: 0.9rem;
            padding: 10px 20px;
        }
    }

    /* Section Heading */
    section.topics-block {
        margin-bottom: 40px;
    }

    .section-heading {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    /* Button List (Inline Buttons) */
    .button-list {
        gap: 10px;
        /* Add spacing between buttons */
        margin-bottom: 30px;
        /* Space below buttons */
    }

    .scroll-button {
        padding: 10px 20px;
        background-color: #fff;
        border: 2px solid #0077CC;
        color: #0077CC;
        border-radius: 10px;
        font-size: 1.6rem;
        cursor: pointer;
        transition: background-color 0.3s ease;
        margin-bottom: 20px;
    }

    .scroll-button:hover {
        background-color: #0077CC;
        color: #fff;
        /* White text */
    }

    /* Topics and Paragraphs */
    .content-item {
        margin-bottom: 20px;
    }

    .content-topic {
        font-weight: bold;
        font-size: 1.6rem;
        margin: 10px 0;
    }

    .content-topic p {
        font-size: 1.6rem;
    }

    .separator {
        border: 0;
        height: 1px;
        background: #e0e0e0;
        /* Light gray for separator */
        margin: 20px 0;
        /* Space above/below the line */
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .button-list {
            flex-wrap: wrap;
            /* Wrap buttons to new lines if necessary */
            justify-content: center;
            /* Center buttons horizontally */
        }

        .scroll-button {
            width: calc(50% - 10px);
            /* Make buttons fit nicely in two columns */
        }
    }
    p{
        font-size: 1.6rem;
    }
    #arrow{
        color: #0077CC;
        position: relative;
        left: 0;
        margin-right: 10px;
        font-weight: lighter;
    }