* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.background-image-container {
    font-family: 'Montserrat', sans-serif;
    width: 100vw; /* Full width of the viewport */
    height: 100vh; /* Full height of the viewport */
    background: url('../icons/app/bg_heart_health.jpg') no-repeat center center fixed;
    box-sizing: border-box;
    background-size: cover;
    background-color: #ffffff;
    display: flex;
    padding: 0%;
    margin: 0%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.top-content {
    flex-direction: column;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}
.filler {
    flex-grow: 1;
}
.app-logo {
    margin-top: 64px;
}
.logo img {
    width: 50px;
}
.title {
    font-family: 'Montserrat', sans-serif;
    margin-top: 20px;
    color: #0A1C50; /* Example color (dark gray) */
    font-weight: 500; /* Normal font weight */
    font-size: 32px;
    line-height: 38px; /* 118.75% */
    letter-spacing: -0.64px;
    font-style: normal;
}
.subtitle {
    font-family: 'Montserrat', sans-serif;
    margin-top: 32px;
    color: #0A1C50; /* Example color (dark gray) */
    font-weight: 400; /* Normal font weight */
    font-size: 24px;
    line-height: 28px; /* 118.75% */
    letter-spacing: -0.56px;
    font-style: normal;
}

.svg-container {
    margin: 32px 16px; /* Adjust the margin as needed */
    width: calc(100% - 32px); /* 100% width minus 16px margin on each side */
    max-width: 100%; /* Ensure the container does not exceed the viewport width */
    font-family: 'Montserrat', sans-serif;
/*    visibility: hidden; *//* Hide the container initially */
}

.svg-container svg {
    width: 100%; /* Make the SVG fill the container's width */
    height: auto; /* Maintain aspect ratio */
    font-family: 'Montserrat', sans-serif;
}

/* Show the container once styles are applied */
/*.svg-container.loaded {
    visibility: visible;
}*/

.diagram {
    margin: 30px 0;
    max-width: 100%;
    font-family: 'Montserrat', sans-serif;
}
.diagram img {
    width: 100%;
    max-width: 300px;
}
.progress-bar {
    width: 100%; /* Full width of the bottom content */
    height: 10px;
    background: #ddd;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}
.landing-loading-bar {
    height: 10px; /* Match height with progress bar */
    width: 84%;
    background-color: #EDF1F6;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    margin-bottom: 58px;
}
.landing-loading-progress {
    height: 100%;
    width: 0;
    background-color: #3266EB;
    border-radius: 5px;
    position: absolute;
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0; }
    100% { width: 100%; }
}