* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    background: #fff;
}

.prize-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* prize-hero */
.prize-hero {
    padding: 100px 0;
    background: #f8f5f2;
    background-image: url('../img/prize_page/mb_ru_dbl.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.prize-hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.prize-hero-text h1 {
    font-size: 32px;
    margin: 20px 0;
    line-height: normal;
}

.subtitle {
    color: #c6a48b;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.desc {
    margin-bottom: 20px;
}

.list li {
    display: flex;
    margin-bottom: 10px;
    list-style: none;
    flex-direction: row;
    align-items: center;
}

.form-list li {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 20px 20px;

}

.form-info_title h3 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.form-info_subtitle h4 {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
    ;
}

.buttons {
    margin-top: 20px;
}

.btn {
    padding: 12px 20px;
    border: none;
    cursor: pointer;
}

.primary {
    background: #c6a48b;
    color: white;
}

.secondary {
    background: transparent;
    border: 1px solid #ccc;
}

.prize-hero-image img {
    max-width: 100%;
}

/* STEPS */
.steps {
    padding: 60px 0;
    text-align: center;
    display: grid;
    place-items: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step span {
    font-size: 20px;
    color: #aaa;
    display: block;
    text-align: center;
}

/* VIDEOS */
.videos {
    padding: 60px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.video-card img {
    width: 100%;
    border-radius: 10px;
}

/* FORM */
.form-section {
    padding: 60px 0;
    background: #f8f5f2;
}

.form-wrap {
    display: flex;
    gap: 40px;
}

.form {
    flex: 1;
}

.form-info {
    width: 40%;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.grid .full {
    grid-column: span 2;
}

input {
    /* padding: 10px; */
    border: 1px solid #ccc;
}

.checkbox {
    display: block;
    margin: 15px 0;
}

form.fluent_form_4 .ff-btn-submit:not(.ff_btn_no_style) {
    background-color: #c6a48b !important;
    ;
    color: #ffffff;
    width: 100% !important;
}

.form-section {
    padding-bottom: 0;
    margin-bottom: 0;
}

/* MOBILE */
@media (max-width: 768px) {

    .prize-hero {
        padding-bottom: 100px;
        padding-top: 0;
        background: #f8f5f2;
        background-image: url('../img/prize_page/mb_ru_mbl.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 100vh;
    }

    .subtitle {
        font-size: 12px;
    }

    .desc {
        font-size: 14px;
        line-height: 1.4;
    }

    .list li {
        font-size: 14px;
        gap: 5px;
        margin: 0;
        line-height: 1.4;
    }

    .prize-hero-text h1 {
        font-size: 24px;
        margin: 10px 0;
        line-height: normal;
    }

    .prize-hero-content {
        flex-direction: column;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-wrap {
        flex-direction: column;
    }

    .form-info {
        width: 100%;
    }
}