* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2c3e50;
    line-height: 1.6;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.content:hover {
    transform: translateY(-5px);
}

.construction-image {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.contact-section {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
}

.contact-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-button {
    display: inline-block;
    padding: 15px 35px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.contact-button:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

.progress-container {
    margin: 40px 0 30px;
}

.progress-text {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #7f8c8d;
}

.progress-bar {
    height: 10px;
    background: #ecf0f1;
    border-radius: 5px;
    overflow: hidden;
}

.progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 5px;
    transition: width 2.5s ease;
}

footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ecf0f1;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.footer .footer-logo {
  width: 4px;
  height: 4px;
  margin-left: 8px;
  vertical-align: middle;
  background-color: #3b6aa0;
  border-radius: 50%;
  padding: 4px;
  display: inline-block;
  /*
  width:20px;
  height:20px;
  margin-left:8px;
  vertical-align:middle;
  border-radius:50%;
  padding:4px;
  color:#7f8c8d;
  display:inline-block !important;
  */
}

/* Responsive design */
@media (max-width: 768px) {
    .content {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .construction-image {
        width: 150px;
        height: 150px;
    }
    
    .contact-button {
        padding: 12px 25px;
    }
}