/* Global Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1f284c, #182643);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

/* Coming Soon Container */
.coming-soon-container {
    padding: 20px;
    max-width: 600px;
    width: 90%;
}

/* Logo Section */
.logo {
    margin-bottom: 20px;
}

.logo img {
    width: 600px; /* Default width for larger screens */
    height: auto; /* Maintains aspect ratio */
    display: block;
    margin: 0 auto;
}

.logo h1 {
    font-size: 2rem;
    color: #00adef;
    margin: 10px 0 0;
}

/* Content Section */
.content p {
    margin: 20px 0 0;
    font-size: 1.2rem;
    color: #b0c7e7;
}

/* Responsive Design for Tablets */
@media (max-width: 768px) {
    .logo img {
        width: 400px; /* Scale down logo for tablets */
    }

    .logo h1 {
        font-size: 1.8rem;
    }

    .content p {
        font-size: 1.1rem;
    }
}

/* Responsive Design for Mobile Devices */
@media (max-width: 480px) {
    .logo img {
        width: 250px; /* Further scale down logo for small screens */
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .content p {
        font-size: 1rem;
    }
}
