.coming-soon-container {
    margin-top: 100px;
    text-align: center;
    background-image: url("../images/coming-soon.jpg");
    background-size: cover; /* Ensures the image covers the whole container */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-attachment: fixed; /* Keeps the image fixed as the user scrolls */
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
    margin-bottom: 100px;
}

.coming-soon-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
}

.coming-soon-content p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 40px;
}

/* Responsive design for mobile */
/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 40px 20px;
    }

    .coming-soon-content h1 {
        font-size: 36px;
    }

    .coming-soon-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .coming-soon-container {
        padding: 30px 15px;
    }

    .coming-soon-content h1 {
        font-size: 28px;
    }

    .coming-soon-content p {
        font-size: 14px;
    }
}
