:root {
    --web-view-ids: n_HSE_WebPage; /* Default to desktop view */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    font-family: Roboto, sans-serif;
}

.n_HSE_WebPage {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    overflow: auto;
    --web-view-name: _HSE_WebPage;
    --web-view-id: n_HSE_WebPage;
    --web-scale-on-resize: true;
    --web-enable-deep-linking: true;
    background-color: pink;
}

.main-h1 {
    font-size: 2.5vw;
    color: rgba(255, 255, 255, 1);
}

/* Typography Styles */
.default-white-h2,
.default-white-h2-bis,
.default-blue-h2,
.default-blue-slim-h2 {
    text-align: left;
    font-style: normal;
    font-weight: bold;
    text-transform: uppercase;
}

.default-white-h2 {
    font-size: 2.5vw;
    color: rgba(255, 255, 255, 1);
}

.default-white-h2-bis {
    font-size: 1.5vw;
    color: rgba(255, 255, 255, 1);
}

.default-blue-h2 {
    font-size: 2.5vw;
    color: rgba(22, 57, 82, 1);
}

.default-blue-slim-h2 {
    font-size: 2vw;
    font-weight: lighter;
    color: rgba(22, 57, 82, 1);
}

.default-blue-h2,
.default-white-h2,
.default-white-slim-h2,
.default-blue-slim-h2 {
    text-align: left;
    font-style: normal;
    font-weight: bold;
    font-size: 1.5vw;
}

.default-blue-h2,
.default-blue-slim-h2 {
    color: rgba(22, 57, 82, 1);
}

.default-white-h2,
.default-white-slim-h2 {
    color: white;
}

.default-blue-slim-h2,
.default-white-slim-h2 {
    font-weight: lighter;
}

.default-white-h3,
.default-blue-h3,
.default-black-h3 {
    font-style: normal;
    font-weight: lighter;
    font-size: 1vw;
}

.default-white-h3 {
    color: white;
    text-align: left;
}

.default-blue-h3 {
    color: rgba(22, 57, 82, 1);
    text-align: center;
}

.default-black-h3 {
    color: black;
    font-size: 1vw;
    text-align: left;
}

/* Text Span Styles */
.default-span {
    font-weight: bold;
    font-size: 1.5vw;
    text-align: left;
    color: rgba(0, 0, 0, 1);
}

.upper-span {
    font-weight: bold;
    font-size: .75vw;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: left;
}

/* Button Styles */
.green-button,
.blue-button,
.white-button {
    display: inline-flex;
    padding: 2vh;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: white;
}

.green-button {
    background-color: rgba(33, 168, 82, 1);
}

.blue-button {
    background-color: rgba(20, 107, 174, 1);
}

.white-button {
    background-color: white;
    color: rgba(20, 107, 174, 1);
}

.default-p {
    font-size: 1vw;
    text-align: left;
    color: black;
    line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 6vw;
        text-align: left;
    }

    .default-white-h2,
    .default-blue-h2,
    .default-blue-slim-h2 {
        font-size: 6vw; /* Scale down h1 headings */
    }

    .default-white-h2-bis {
        font-size: 5vw; /* Scale down h1 headings */
    }

    .default-blue-h2,
    .default-white-h2,
    .default-white-slim-h2,
    .default-blue-slim-h2 {
        font-size: 4vw; /* Scale down h2 headings */
    }

    .default-blue-h3,
    .default-white-h3,
    .default-black-h3 {
        font-size: 3.5vw; /* Scale down h3 for readability */
    }

    .default-span {
        font-size: 3vw; /* Adjust text span size */
    }

    .upper-span {
        font-size: 3vw; /* Scale up button text for better visibility */
    }

    .green-button,
    .white-button,
    .blue-button {
        padding: 1.5vh; /* Slightly reduce padding for mobile */
    }

    .default-p {
        font-size: 3vw; /* Scale down paragraph text */
    }

}
