body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Page container */
.page-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

/* Background image styling */
.page-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/background-de.png');
    background-size: cover;
    /* Ensures the image covers the entire container */
    background-position: center;
    /* Centers the background image */
    background-repeat: no-repeat;
    filter: blur(8px);
    /* Adjust the blur level as needed */
    z-index: -1;
    /* Ensure the background stays behind the content */
}

/* Text container */
.text-container {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
    gap: 25px;
    align-items: center;
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    margin: 0 20px;

}



.caption-container {
    position: absolute;
    top: 0;
    right: 25px;
    transform: translateY(-50%) translateX(50%) rotate(12deg);
    background-color: #02A74F;
    color: white;
    font-weight: bold;
    padding: 12px 16px;
    /* py-3 px-4 */
    border-radius: 9999px;
    /* rounded-full */
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.25);
    /* shadow-lg */
    z-index: 20;
    /* z-20 */
    border: 4px solid white;
}


.text-container img {
    max-height: 80px;
}

/* Heading styles */
.text-container h1 {
    margin: 0;
    font-size: 40px;
    line-height: 120%;
    font-weight: 1000;
    color: rgb(15, 61, 62);
}

.text-container h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    color: rgb(15, 61, 62);
    max-width: 500px;
}

/* Link/button styling */
.text-container a {
    margin-top: 10px;
    text-decoration: none;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    background: #02A74F;
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    line-height: 1.0;
    font-weight: 700;
    max-width: 300px;
}


.link {
    z-index: 100;
    position: absolute;
    width: 100vw;
    height: 100vh;
}

.text-container a:hover {}






/* Media query for mobile screens (up to 600px wide) */
@media screen and (max-width: 768px) {

    .text-container {
        gap: 30px;
    }

    .caption-container {
        padding: 10px 14px;
        /* py-3 px-4 */
        font-size: 13px;
        right: 50px;
    }



    .text-container a {
        font-size: 16px;
        padding: 15px 20px;
    }
}

@media screen and (max-width: 600px) {

    .text-container {
        gap: 20px;
    }

    .text-container h1 {
        font-size: 28px;
    }

    .text-container h2 {
        font-size: 13px;
        line-height: 22px;
        max-width: 280px;
    }

    .text-container a {
        font-size: 14px;
        padding: 10px 15px;
    }
}



@media screen and (max-width: 400px) {



    .text-container h1 {
        font-size: 23px;
    }

    .caption-container {
        padding: 8px 12px;
        font-size: 11px;
    }

    .text-container {
        padding: 35px;
    }
}