* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.main-container {
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #d3a6c7, #e4c0e6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    text-align: center;
    max-width: 500px;
    padding: 40px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 120px;
    margin-bottom: 20px;
}

h1 {
    font-size: 36px;
    font-weight: 600;
    color: #9b4d96;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.construction-message {
    background-color: #f8d9e7;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.construction-message h2 {
    font-size: 28px;
    color: #9b4d96;
    font-weight: 600;
}

.construction-message p {
    font-size: 16px;
    color: #555;
}

footer p {
    font-size: 14px;
    color: #888;
    margin-top: 30px;
}

footer p a {
    color: #9b4d96;
    text-decoration: none;
    transition: color 0.3s;
}

footer p a:hover {
    color: #6f2b64;
}
