* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    max-width: 700px;
    width: 100%;
    padding: 20px;
}

.header h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
}

.header p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #ccc;
}

.construction-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 20px 0;
}

.cta p {
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
}

input[type="email"] {
    padding: 10px;
    width: 80%;
    margin-right: 10px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    outline: none;
}

button {
    padding: 10px 20px;
    background-color: #2575fc;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #6a11cb;
}

.footer {
    margin-top: 40px;
    font-size: 14px;
    color: #ccc;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .header h1 {
        font-size: 28px;
    }
    
    .header p {
        font-size: 16px;
    }
    
    .cta p {
        font-size: 20px;
    }

    input[type="email"] {
        width: 70%;
    }

    button {
        width: 25%;
    }
}
