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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 700px;
    margin: 40px auto;
    text-align: center;
}

.header {
    animation: slideDown 0.6s ease-out;
    margin-bottom: 30px;
}

.logo-section {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.header-image {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.logo {
    font-size: 36px;
    color: #667eea;
    margin-bottom: 8px;
    font-weight: bold;
}

.subtitle {
    font-size: 18px;
    color: #764ba2;
    font-weight: 600;
}

.main-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.8s ease-out;
}

.construction-image {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.crane {
    font-size: 80px;
    display: block;
    margin-bottom: 30px;
    animation: swing 2s ease-in-out infinite;
}

@keyframes swing {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

.message-section {
    margin-bottom: 40px;
}

.main-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.description strong {
    color: #667eea;
    display: block;
    margin-top: 10px;
}

.progress-container {
    margin: 30px 0;
}

.progress-label {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    animation: fillBar 2s ease-out forwards;
}

@keyframes fillBar {
    from { width: 0; }
    to { width: 85%; }
}

.progress-text {
    font-size: 12px;
    color: #667eea;
    font-weight: bold;
}

.contact-section {
    margin-bottom: 40px;
    padding: 30px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.contact-section h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 25px;
    font-weight: bold;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.contact-item {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    background: #f5f5f5;
}

.contact-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.contact-label {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    font-weight: bold;
}

.contact-value {
    font-size: 14px;
    color: #333;
    font-weight: bold;
}

.contact-value a {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-value a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.newsletter-section {
    margin-bottom: 40px;
}

.newsletter-section h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #667eea;
    background: #f9f9f9;
}

.submit-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
    transform: scale(0.98);
}

.newsletter-note {
    font-size: 12px;
    color: #999;
}

.social-section h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.footer {
    text-align: center;
    color: white;
    font-size: 14px;
    margin-top: 40px;
    padding-top: 30px;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 600px) {
    .container {
        margin: 20px auto;
    }

    .main-content {
        padding: 25px;
    }

    .logo {
        font-size: 28px;
    }

    .main-title {
        font-size: 24px;
    }

    .crane {
        font-size: 60px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .submit-btn {
        width: 100%;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .social-links {
        gap: 10px;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}
