/* Urse Page */

.page-header {
    background: linear-gradient(rgba(10, 92, 54, 0), rgba(10, 92, 54, 0)), url('../img/about-1.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    min-height: 120px;
}

.countdown {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-green), #0a8c4d);
    color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px var(--shadow);
}

.countdown-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.countdown-label {
    font-size: 1rem;
    opacity: 0.9;
    display: block;
    margin-top: 0.5rem;
}

.urse-schedule {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow);
}

.schedule-item {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
}

.schedule-time {
    font-weight: 700;
    color: var(--primary-green);
    min-width: 150px;
    margin-bottom: 0.5rem;
}

.highlight-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow);
    height: 100%;
    transition: var(--transition);
    text-align: center;
}

.highlight-card:hover {
    transform: translateY(-10px);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-green);
    font-size: 1.8rem;
}

.registration-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow);
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }

    .countdown-number {
        font-size: 2rem;
    }
}