* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

/* Navbar */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    width: 100%;
}

.navbar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.logo {
    max-width: 200px;
    height: auto;
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f5f5f5;
    border-top: 1px solid #ddd;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-text {
    font-size: 14px;
    color: #333;
    margin: 0 0 10px 0;
}

.email-text {
    font-size: 14px;
    color: #333;
    margin: 0;
}

.email-text a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.email-text a:hover {
    text-decoration: underline;
}

/* Main Content */
.main-content {
    width: 100%;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 200px;
}

.container {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 40px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image Area */
.image-area {
    display: flex;
    justify-content: center;
    align-items: center;
}

.construction-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
}

.development-text {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin: 0;
    letter-spacing: 0.5px;
    white-space: nowrap;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Logo Area */
.logo-area {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .logo {
        max-width: 150px;
    }

    .development-text {
        font-size: 22px;
        white-space: normal;
    }

    .footer {
        padding: 15px 0;
    }

    .footer-text,
    .email-text {
        font-size: 12px;
    }

    .main-content {
        padding-bottom: 180px;
    }

    .content h1 {
        font-size: 36px;
    }

    .content .subtitle {
        font-size: 18px;
    }

    .logo {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    .content h1 {
        font-size: 28px;
    }

    .content .subtitle {
        font-size: 16px;
    }

    .logo {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 0;
    }

    .logo {
        max-width: 120px;
    }

    .container {
        padding: 15px;
    }

    .development-text {
        font-size: 18px;
        white-space: normal;
    }

    .main-content {
        padding-bottom: 160px;
    }

    .footer {
        padding: 12px 0;
    }

    .footer-text,
    .email-text {
        font-size: 11px;
    }

    .footer-content {
        padding: 0 10px;
    }
}
