@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #00C9D4 ;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    width: 100%;
}

.logo {
    margin-bottom: 2rem;
}

.logo img {
    max-width: 250px;
    height: auto;
}

.content {
    background: #fff;
    padding: 3rem;
    border-radius: 4px; 
}
 
.title {
    font-size: clamp(25px, 2.86vw, 40px);
    color: #444;
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1;
}

.divider {
    width: 60px;
    height: 4px;
    background: #00c9d4;
    margin: 2rem auto;
    border-radius: 2px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.contact-item i {
    font-size: 1.5rem;
    color: #00c9d4;
    margin-top: 0.2rem;
}

.contact-item .text p,
.contact-item .text p a {
    color: #666;
    line-height: 1.6;
    text-decoration: none;
}

.contact-item .text p:first-child {
    color: #333;
    font-weight: 500;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .content {
        padding: 2rem 1.5rem;
    }
    
    .construction-text h1 {
        font-size: 2rem;
    }
    
    .construction-text h2 {
        font-size: 1.5rem;
    }
}
