/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 800px;
    width: 90%;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    backdrop-filter: blur(10px);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(52, 73, 94, 0.1);
}

/* Header styles */
.header {
    margin-bottom: 3rem;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 2rem;
}

/* Logo layout */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.logo-img {
    display: block;
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(44,62,80,0.12);
    background: white;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Main content styles */
.main-content {
    margin-bottom: 3rem;
}

.title {
    font-size: 2.5rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.description {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Contact section */
.contact-section {
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 500px;
    border: 2px solid #95a5a6;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3498db 0%, #2980b9 100%);
    border-radius: 10px 10px 0 0;
}

.contact-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.contact-label {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 500;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    border: 2px solid #3498db;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(52, 152, 219, 0.2);
}

.phone-number:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Footer styles */
.footer {
    border-top: 2px solid #ecf0f1;
    padding-top: 1.5rem;
    color: #95a5a6;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .logo {
        font-size: 2.5rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .description {
        font-size: 1.1rem;
    }
    
    .contact-section {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }
    
    .contact-title {
        font-size: 1.3rem;
    }
    
    .phone-number {
        font-size: 1.3rem;
        padding: 0.7rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 98%;
        padding: 1rem;
        border-radius: 8px;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .title {
        font-size: 1.8rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .contact-info {
        gap: 0.8rem;
    }
    
    .phone-number {
        font-size: 1.2rem;
        padding: 0.6rem 1rem;
    }
}

/* Subtle animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.container {
    animation: fadeIn 0.8s ease-out;
}

.contact-section {
    animation: slideIn 1s ease-out 0.3s both;
}

.logo {
    animation: slideIn 0.6s ease-out 0.1s both;
}

.title {
    animation: fadeIn 0.8s ease-out 0.2s both;
}