.coming-soon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    background-color: #f8f8f8;
    color: #004d00;
    padding: 50px 20px;
}

.coming-soon .content {
    max-width: 600px;
}

.coming-soon h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.coming-soon p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.countdown div {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 5px;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.subscribe-form input {
    padding: 10px;
    width: 250px;
    border: none;
    border-radius: 5px;
}

.subscribe-form button {
    padding: 10px 15px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.subscribe-form button:hover {
    background: #c0392b;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .coming-soon {
        height: auto; /* Allow height to adjust based on content */
        padding: 50px 20px;
    }

    .coming-soon h1 {
        font-size: 2.5rem; /* Reduce font size for smaller screens */
    }

    .coming-soon p {
        font-size: 1rem; /* Reduce font size for smaller screens */
    }

    .countdown {
        flex-wrap: wrap; /* Allow countdown items to wrap on smaller screens */
        gap: 10px; /* Reduce gap between items */
        font-size: 1.2rem; /* Reduce font size for countdown */
    }

    .countdown div {
        padding: 8px 12px; /* Reduce padding for smaller screens */
    }

    .subscribe-form {
        flex-direction: column; /* Stack input and button vertically */
        align-items: center;
        gap: 10px;
    }

    .subscribe-form input {
        width: 100%; /* Make input take full width */
        max-width: 300px; /* Limit input width */
    }

    .subscribe-form button {
        width: 100%; /* Make button take full width */
        max-width: 300px; /* Limit button width */
    }
}

@media (max-width: 480px) {
    .coming-soon h1 {
        font-size: 2rem; /* Further reduce font size for very small screens */
    }

    .coming-soon p {
        font-size: 0.9rem; /* Further reduce font size for very small screens */
    }

    .countdown {
        font-size: 1rem; /* Further reduce font size for countdown */
    }

    .countdown div {
        padding: 6px 10px; /* Further reduce padding for very small screens */
    }

    .subscribe-form input,
    .subscribe-form button {
        max-width: 250px; /* Further limit input and button width */
    }
}