/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

header {
    padding: 20px;
}

.main-logo {
    width: 100px;
}

h1 {
    font-size: 3em;
    margin: 20px 0 10px;
}

h2 {
    font-size: 1.5em;
    color: #ccc;
    margin-bottom: 40px;
}

/* Countdown Timer Styles */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.countdown-item {
    background: #222;
    border-radius: 10px;
    padding: 10px;
    min-width: 70px;
    box-sizing: border-box;
    text-align: center;
}

.countdown-value {
    display: block;
    font-size: 2.5em;
    color: #fff;
}

.countdown-label {
    font-size: 1em;
    color: #bbb;
}

@media (max-width: 600px) {
    .countdown-item {
        min-width: 50px;
        padding: 5px;
    }
    .countdown-value {
        font-size: 2em;
    }
    .countdown-label {
        font-size: 0.8em;
    }
}

/* Learn More Button Styles */
.learn-more {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 10px; /* 10px padding on all sides */
    border-radius: 30px;
    text-decoration: none;
    font-size: 1em;
    margin: 50px auto; /* Add margin to center the button */
    transition: background 0.3s;
    width: auto; /* Ensures the button width is based on the text content */
    text-align: center;
}

.learn-more:hover {
    background: #0056b3;
}

/* Footer Styles */
footer {
    background: #111;
    color: #ccc;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 40px;
    margin-bottom: 10px;
}

.footer-content p {
    margin: 0;
    font-size: 0.9em;
    padding: 0 10px;
}

.footer-copyright {
    font-size: 0.8em;
    color: #777;
    margin-top: 10px;
}