body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f4f7f6;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.construction-container {
    text-align: center;
    max-width: 600px;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

p {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.subscribe-form input {
    padding: 12px 15px;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.subscribe-form button {
    padding: 12px 20px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.subscribe-form button:hover {
    background-color: #2980b9;
}

.social-links a {
    text-decoration: none;
    color: #3498db;
    margin: 0 15px;
    font-weight: bold;
}

.social-links a:hover {
    color: #2c3e50;
}
