/* --- SECTION & VIDEO BACKGROUND --- */
.main_type2_section {
    position: relative;
    width: 100%;
    min-height: 800px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #111; /* Колір підкладки поки вантажиться відео */
    color: #fff;
    text-align: center;
}

.main_type2_video_wrap {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1; pointer-events: none;
}

/* Розтягуємо відео і ховаємо чорні смуги */
.main_type2_video_wrap iframe {
    position: absolute;
    top: 50%; left: 50%;
    width: 100vw; height: 100vh;
    transform: translate(-50%, -50%);
    min-width: 177.77vh; /* 16:9 Aspect Ratio */
    min-height: 56.25vw;
}

.main_type2_bg_fallback {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    z-index: 1;
}

.main_type2_video_overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.65); /* Затемнення */
    z-index: 2;
}

/* --- CONTENT WRAPPER --- */
.main_type2_wrapper {
    position: relative;
    z-index: 10;
}

/* --- ELEMENTS --- */
.main_type2_top_tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #ccc;
}
.main_type2_flag {
    font-size: 18px; /* Розмір емодзі */
}

.main_type2_title {
    font-size: 70px;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 50px;
    color: #d4a574; /* Золотий колір */
}

/* FEATURES ROW */
.main_type2_features_row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.main_type2_feature_item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.main_type2_icon_box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.main_type2_feature_text {
    font-size: 18px;
}
.main_type2_feat_title {
    color: #aaa;
    margin-bottom: 3px;
}
.main_type2_feat_subtitle {
    color: #fff;
    font-weight: 700;
}

/* DESCRIPTION */
.main_type2_desc {
    margin: 0 auto 50px;
    font-size: 17px;
    line-height: 1.5;
    color: #fff;
    font-weight: 700;
}

/* BUTTON */
.main_type2_btn {
    display: inline-block;
    background-color: #c69c6d;
    color: #fff;
    padding: 21px 25px;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    transition: background 0.3s;
}
.main_type2_btn:hover {
    background-color: #b08556;
}
.main_type2_arrow {
    margin-left: 10px;
    font-weight: 400;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .main_type2_title { font-size: 32px; margin-bottom: 30px;}
    .main_type2_features_row { flex-direction: column; gap: 20px;}
}