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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

/* Main content styles */
.main-content {
    padding: 2rem;
}

.coming-soon {
    max-width: 600px;
    margin: 0 auto;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Logo styling */
.logo {
    margin-top: 2rem;
}

.main-logo {
    max-width: 180px;
    height: auto;
    opacity: 0.9;
}

/* Responsive design */
@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .main-logo {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.5rem;
    }
    
    .description {
        font-size: 0.9rem;
    }
    
    .main-logo {
        max-width: 120px;
    }
}
