body {
    background: linear-gradient(135deg, #007B3F 0%, #2E9D4A 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.jumbotron {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 30px auto;
    max-width: 900px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.jumbotron::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FFA500, #007B3F, #FFA500, #007B3F);
    background-size: 300% 100%;
    animation: gradient 3s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 5px solid white;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.under-construction {
    text-align: center;
    color: #007B3F;
    font-weight: 800;
    margin-bottom: 10px;
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.under-construction span {
    background: linear-gradient(90deg, #FFA500, #007B3F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 10px;
    line-height: 1.8;
    font-size: 1.2rem;
}

.countdown-container {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 15px;
    margin: 10px 0;
    text-align: center;
    border: 1px solid #e9ecef;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 10px 0;
}

.countdown-item {
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
}

.countdown-number {
    font-size: 2rem;
    font-weight: bold;
    color: #007B3F;
}

.countdown-label {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 5px;
}

.contact-info {
    margin-top: 30px;
    color: #6c757d;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info i {
    margin-right: 10px;
    color: #FFA500;
    width: 20px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(90deg, #FFA500, #007B3F);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.6);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 10px 0;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFA500, #007B3F);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.1);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 165, 0, 0.4);
}

footer {
    margin-top: 10px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 767px) {
    .jumbotron {
        padding: 30px;
        margin: 15px;
    }

    .under-construction {
        font-size: 2.5rem;
    }

    .description {
        font-size: 1rem;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-item {
        width: 60px;
        height: 60px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .logo {
        width: 140px;
        height: 140px;
    }
}