 /* Стили для таймера */
        .promo-timer {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
        }
        .timer-box {
            background-color: #024E31;
            color: white;
            padding: 10px 15px;
            border-radius: 8px;
            min-width: 70px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .timer-box span {
            display: block;
            font-size: 2rem;
            font-weight: bold;
            line-height: 1;
        }
        .timer-box small {
            font-size: 0.8rem;
            text-transform: uppercase;
            opacity: 0.8;
        }
        .timer-title {
            color: #d93025;
            font-weight: bold;
            font-size: 1.1rem;
            margin-bottom: 10px;
            text-transform: uppercase;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }

        /* Стили модального окна опроса */
        .survey-modal {
            display: none;
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 10000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .survey-modal.show {
            display: flex;
            opacity: 1;
        }
        .survey-content {
            background: white;
            padding: 40px;
            border-radius: 12px;
            width: 90%;
            max-width: 500px;
            text-align: left;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            position: relative;
        }
        .survey-step {
            display: none;
            animation: fadeIn 0.4s ease;
        }
        .survey-step.active {
            display: block;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .survey-content h3 {
            color: #024E31;
            margin-top: 0;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .survey-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 25px;
        }
        .survey-options label {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1rem;
            cursor: pointer;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 8px;
            transition: 0.2s;
        }
        .survey-options label:hover {
            background: #f0f8f5;
            border-color: #024E31;
        }
        .rating-scale {
            display: flex;
            justify-content: space-between;
            gap: 5px;
            margin-bottom: 25px;
        }
        .rating-scale input[type="radio"] {
            display: none;
        }
        .rating-scale label {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #ccc;
            border-radius: 50%;
            cursor: pointer;
            font-weight: bold;
            transition: 0.2s;
        }
        .rating-scale input[type="radio"]:checked + label {
            background: #024E31;
            color: white;
            border-color: #024E31;
        }
        .survey-btn {
            background-color: #024E31;
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            float: right;
            transition: 0.3s;
        }
        .survey-btn:hover {
            background-color: #013824;
        }
        .close-modal {
            position: absolute;
            top: 15px; right: 15px;
            background: none; border: none;
            font-size: 1.5rem; cursor: pointer; color: #888;
        }

/* Стили для нового блока main */
.award-page {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.award-title {
    color: #024E31;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}
.award-subtitle {
    color: #555;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.award-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px auto 40px auto;
    max-width: 900px;
}
.award-images img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    object-fit: cover;
}

.btn-award {
    display: inline-block;
    background: linear-gradient(135deg, #024E31 0%, #036b44 100%);
    color: #fff;
    padding: 18px 48px;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(2, 78, 49, 0.3);
    margin: 15px 0 40px 0;
}
.btn-award:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(2, 78, 49, 0.4);
    background: linear-gradient(135deg, #036b44 0%, #024E31 100%);
}

/* Модальное окно */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.modal-overlay.active {
    display: flex;
}
.modal-window {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    position: relative;
    text-align: left;
}
.modal-close {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    transition: color 0.2s;
}
.modal-close:hover { color: #333; }
.modal-title {
    color: #024E31;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 25px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
    font-size: 0.95rem;
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border 0.3s;
}
.form-control:focus {
    outline: none;
    border-color: #024E31;
}
.id-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}
.id-wrapper select {
    width: 20%;
    flex-shrink: 0;
    text-align: center;
    font-weight: bold;
}
.id-separator {
    font-size: 1.2rem;
    font-weight: bold;
    color: #666;
}
.btn-submit {
    width: 100%;
    padding: 14px;
    background: #024E31;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}
.btn-submit:hover { background: #036b44; }


/* Стили для увеличения картинок (Лайтбокс) */
.award-images img {
    cursor: pointer;
    transition: transform 0.2s ease;
}
.award-images img:hover {
    transform: scale(1.02);
}

/* Модальное окно для просмотра фото */
.image-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.image-modal-overlay.active {
    display: flex;
}
.image-modal-overlay img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(255,255,255,0.1);
}
.image-modal-overlay .close-img-btn {
    position: absolute;
    top: 20px; right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.image-modal-overlay .close-img-btn:hover {
    transform: scale(1.2);
}