/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Page Background */
body {
    height: 100vh;
    background-image:
        linear-gradient(
            rgba(0, 90, 90, 0.75),
            rgba(0, 90, 90, 0.75)
        ),
        url("pro-m-combi.en.avif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay Container */
.overlay {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Content Box */
.content {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 60px;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Logo */
.logo {
    width: 220px;
    margin-bottom: 30px;
}

/* Headings */
h1 {
    font-size: 32px;
    color: #2b6f6a;
    margin-bottom: 20px;
}

/* Subtitle */
.subtitle {
    font-size: 18px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Divider */
.divider {
    width: 80px;
    height: 4px;
    background-color: #7dbbb5;
    margin: 0 auto 25px auto;
    border-radius: 2px;
}

/* Footer Text */
.footer-text {
    font-size: 14px;
    color: #777777;
}

/* Responsive */
@media (max-width: 768px) {
    .content {
        padding: 40px 25px;
    }

    h1 {
        font-size: 26px;
    }

    .subtitle {
        font-size: 16px;
    }

    .logo {
        width: 180px;
    }
}
