* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top, rgba(180, 24, 18, 0.18), transparent 34%),
        linear-gradient(180deg, #050505 0%, #111111 50%, #050505 100%);
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}

.under-construction-page {
    width: 100%;
    min-height: 100vh;
}

.hero-under-construction {
    width: 100%;
    min-height: 100vh;
    padding: 24px 18px 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.image-wrapper {
    width: 100%;
    max-width: 960px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.58);
}

.seo-text {
    width: 100%;
    max-width: 1050px;
    margin-top: 28px;
    text-align: center;
    color: #e7e7e7;
    padding: 0 12px;
}

.seo-text h1 {
    color: #ffffff;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.1;
    margin-bottom: 18px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.seo-text p {
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.75;
    margin-bottom: 16px;
}

.main-service {
    color: #f2f2f2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-line {
    font-size: clamp(18px, 2vw, 23px);
    font-weight: 800;
}

.contact-line a,
.domain-line a {
    color: #ffffff;
    font-weight: 900;
    text-decoration: none;
}

.contact-line a:hover,
.domain-line a:hover {
    text-decoration: underline;
}

.domain-line {
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 1px;
    margin-top: -4px;
}

@media screen and (max-width: 768px) {
    .hero-under-construction {
        padding: 16px 12px 36px;
    }

    .seo-text {
        margin-top: 22px;
    }

    .seo-text p {
        line-height: 1.65;
    }
}