@font-face {
    font-family: 'Ouvality';
    src: url('../fonts/Ouvality.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Сброс стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

/* Базовые стили */
html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Playfair', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #230b05;
    background-color: #fffbef;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.wrapper {
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1632px;
    margin: 0 auto; 
    /* padding: 0 144px; */
}

/* Типографика */
.italic {
    font-style: italic;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    padding: 25px 0;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
    transform: translateY(0);
}

.header.hidden {
    transform: translateY(-100%);
}

.header.scrolled {
    background: rgba(255, 251, 239, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    width: 180px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.logo-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.logo-image-mobile {
    display: none;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 400;
    color: #230b05;
    white-space: nowrap;
    display: none;
}

.logo:not(:has(.logo-image[src])) .logo-text,
.logo .logo-image:not([src]) ~ .logo-text {
    display: block;
}

.icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 0;
}

.menu-item-with-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
    color: #230b05;
    text-decoration: none;
    padding: 8px 16px;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.menu-item-with-icon:hover {
    opacity: 0.7;
}

.menu-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.menu-icon svg {
    width: 100%;
    height: 100%;
}

.menu-item {
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
    color: #230b05;
    text-decoration: none;
    padding: 8px 16px;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.menu-item:last-child {
    padding-right: 0;
}

.menu-item:hover {
    opacity: 0.7;
}

.header-contacts .phone,
.header-contacts .name {
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
    color: #230b05;
    padding: 8px 16px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 42.667px;
    height: 42.667px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 150;
    pointer-events: auto;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: #9f3118;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 11, 5, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 376px;
    height: 100%;
    background: #fffbef;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 20px;
    border-bottom: 1px solid rgba(35, 11, 5, 0.1);
    height: 82px;
    flex-shrink: 0;
}

.mobile-menu-name {
    font-family: 'Playfair', sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.4;
    color: #230b05;
    margin: 0;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity 0.3s;
}

.mobile-menu-close:hover {
    opacity: 0.7;
}

.mobile-menu-close svg {
    width: 100%;
    height: 100%;
}

.mobile-menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 32px 20px;
    gap: 32px;
    overflow-y: auto;
}

.mobile-menu-section {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 0;
    padding-right: 16px;
    border-bottom: 1px solid rgba(159, 49, 24, 0.1);
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
    color: #230b05;
    text-decoration: none;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.mobile-menu-item:hover {
    opacity: 0.7;
}

.mobile-menu-item:last-child {
    border-bottom: 1px solid rgba(159, 49, 24, 0.1);
}

.mobile-menu-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-menu-icon .icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-top: auto;
    height: 83px;
    flex-shrink: 0;
}

.mobile-menu-logo-image {
    max-width: 336px;
    max-height: 49px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 1100px;
    padding-top: 100px;
    overflow: hidden;
    width: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1100px;
    z-index: 0;
    background-color: #fffbef;
}

.hero-background-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1920px;
    max-width: 100vw;
    height: 1100px;
    opacity: 0.5;
    overflow: hidden;
    pointer-events: none;
}

.hero-background-image::before {
    content: '';
    position: absolute;
    /* top: -4.35%;
    left: -9.96%; */
    width: 100%;
    height: 100%;
    background-image: url('../img/hero/Background.jpg');
    background-size: cover;
    background-position: center;
}

.hero-lightener {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 13px));
    width: 910px;
    height: 910px;
    pointer-events: none;
    z-index: 1;
}

.hero-lightener-image {
    width: 143.96%;
    height: 143.96%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
}

.hero-decorative-lines {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1632px;
    max-width: calc(100vw - 40px);
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-line-left {
    position: absolute;
    left: -33.36px;
    top: -7.09px;
    width: 338.934px;
    height: 776.096px;
    pointer-events: none;
    object-fit: contain;
}

.hero-line-right {
    position: absolute;
    right: -33.36px;
    top: -71.07px;
    width: 604.247px;
    height: 984.39px;
    pointer-events: none;
    object-fit: contain;
}

.hero-polaroid-images {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1632px;
    max-width: calc(100vw - 40px);
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: visible;
}

.hero-polaroid-images-mobile {
    display: none;
}

.polaroid-image {
    position: absolute;
}

.polaroid-photo {
    position: relative;
    border: 8.889px solid #ffffff;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.polaroid-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.polaroid-clip {
    position: absolute;
    width: 19px;
    height: 40px;
    background-image: url('../img/hero/clip.png');
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.25));
    pointer-events: none;
    z-index: 10;
}

.polaroid-1 {
    left: -10px;
    top: 172.92px;
    width: 284.84px;
    height: 242.565px;
    transform: rotate(-5deg);
}

.polaroid-1 .polaroid-photo {
    position: absolute;
    left: -0.17px;
    top: 20.15px;
    width: 266.667px;
    height: 200px;
    border-width: 10px;
}

.polaroid-1 .polaroid-clip {
    position: absolute;
    left: 100.68px;
    top: -2.09px;
    width: 22.414px;
    height: 41.504px;
    transform: rotate(185deg) scaleY(-1);
}

.polaroid-2 {
    left: -10px;
    top: 445px;
    width: 284.532px;
    height: 239.047px;
    transform: rotate(5deg);
}

.polaroid-2 .polaroid-photo {
    position: absolute;
    left: 0;
    top: 16.63px;
    width: 266.667px;
    height: 200px;
    border-width: 8.889px;
}

.polaroid-2 .polaroid-clip {
    position: absolute;
    left: 104.76px;
    top: 1.1px;
    width: 22.414px;
    height: 41.504px;
    transform: rotate(-5deg);
}

.polaroid-3 {
    left: calc(1632px - 288.535px - -34.59px);
    top: 155.94px;
    width: 288.535px;
    height: 249.841px;
    transform: rotate(6deg);
}

.polaroid-3 .polaroid-photo {
    position: absolute;
    left: 0;
    top: 23.19px;
    width: 266.667px;
    height: 200px;
    border-width: 8.889px;
}

.polaroid-3 .polaroid-clip {
    position: absolute;
    left: 124.61px;
    top: 0.06px;
    width: 23.077px;
    height: 41.767px;
    transform: rotate(-6deg);
}

.polaroid-4 {
    left: calc(1632px - 281.085px - -34.59px);
    top: 450px;
    width: 281.085px;
    height: 234.076px;
    transform: rotate(-4deg);
}

.polaroid-4 .polaroid-photo {
    position: absolute;
    left: 0;
    top: 16px;
    width: 266.667px;
    height: 200px;
    border-width: 8.889px;
}

.polaroid-4 .polaroid-clip {
    position: absolute;
    left: 113.95px;
    top: -0.56px;
    width: 21.744px;
    height: 41.228px;
    transform: rotate(184deg) scaleY(-1);
}

.hero-top-lightener {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1920px;
    max-width: 100vw;
    height: 250px;
    background: linear-gradient(180deg, #FFFAF0 23.86%, rgba(255, 250, 240, 0.00) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    margin-top: 90px;
    max-width: 1083px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 84px;
    font-weight: 400;
    line-height: 1;
    color: #230b05;
    margin-bottom: 32px;
}

.hero-subtitle {
    font-family: 'Playfair', sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.4;
    color: #230b05;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.btn {
    font-family: 'Playfair', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn:not(.quiz-next) {
    white-space: nowrap;
}

.btn-primary {
    background-color: #9f3118;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #7C2613;
}

.btn-white {
    background-color: #ffffff;
    color: #581b0d;
    width: 50%;
}

.btn-white:hover {
    background-color: #f5f5f5;
}

.quiz-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-direction: row;
}

.quiz-next span {
    display: inline-block;
}

.quiz-next img,
.quiz-next .arrow-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: inline-block;
}

.quiz-submit .arrow-icon {
    margin-left: 8px;
}


.btn-secondary {
    background-color: transparent;
    color: #260700;
    border: 1px solid #dfbab2;
}

.btn-secondary:hover {
    background-color: #dfbab2;
}

.hero-widget {
    position: absolute;
    z-index: 3;
    top: 744px;
    left: 50%;
    transform: translateX(-50%);
    width: 1632px;
    max-width: calc(100vw - 40px);
    padding: 0 20px;
    box-sizing: border-box;
}

.widget-intro {
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.1;
    color: #230b05;
    text-align: center;
    margin-bottom: 32px;
}

.tour-widget {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.widget-top {
    background: #b45f4b;
    border-radius: 24px 24px 0 0;
    padding: 21px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.widget-header {
    display: flex;
    gap: 16px;
}

.radio-btn {
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    background: transparent;
    border: none;
    padding: 4px 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.radio-btn::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #ededed;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    background-color: transparent;
}

.radio-btn.active::before {
    background-color: #9f3118;
    border-color: #ededed;
}

.widget-main-fields {
    display: flex;
    gap: 0;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    height: 64px;
    padding: 0;
    overflow: hidden;
}

.widget-field-placeholder {
    flex: 1;
    height: 100%;
    min-width: 0;
    position: relative;
}

.widget-field-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    position: relative;
}

.widget-search-btn {
    width: 64px;
    height: 64px;
    background: #ffffff;
    border-radius: 8px;
    flex-shrink: 0;
}

.widget-bottom {
    background: #dfbab2;
    border-radius: 0 0 16px 16px;
    padding: 21px;
    display: flex;
    gap: 32px;
    align-items: center;
}

.widget-footer-field-large {
    background: #ffffff;
    border-radius: 8px;
    height: 43px;
    width: 499px;
    flex-shrink: 0;
}

.widget-footer-fields {
    flex: 1;
    display: flex;
    gap: 32px;
}

.widget-footer-field {
    background: #ffffff;
    border-radius: 8px;
    height: 43px;
    flex: 1;
    min-width: 0;
}

/* Quiz Section */
.quiz-section {
    padding: 96px 0;
    background: #fffbef;
}

.section-header {
    margin-bottom: 32px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1;
    color: #230b05;
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
    color: #230b05;
}

.quiz-form {
    background: #f6e7da;
    border-radius: 16px;
    padding: 48px;
    position: relative;
}

.quiz-step-item {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.quiz-step-item.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-icon.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-icon.disabled svg path {
    opacity: 0.5;
}

.quiz-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: #9f3118;
    border-radius: 4px 4px 0 0;
}

.quiz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    min-height: 90px;
}

.quiz-header-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.quiz-subtitle {
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
    color: #230b05;
}

.quiz-form-fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 900px;
}

.quiz-inputs-row {
    display: flex;
    gap: 8px;
}

.quiz-input-wrapper {
    flex: 1;
    background: #ffffff;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
    height: 75px;
    padding: 8px 8px 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
}

.quiz-input-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quiz-input-icon svg {
    width: 100%;
    height: 100%;
}

.quiz-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
    color: #230b05;
    background: transparent;
    width: 100%;
}

.quiz-input::placeholder {
    color: #88898b;
}

.quiz-messenger-options {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.quiz-messenger-option {
    display: flex;
    gap: 8px;
    align-items: center;
    cursor: pointer;
}

.quiz-messenger-checkbox {
    width: 24px;
    height: 24px;
    border: 1.5px solid #ededed;
    border-radius: 3px;
    background-color: #ffffff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    box-sizing: border-box;
    margin: 0;
}

.quiz-messenger-checkbox:checked {
    background-color: #9f3118;
    border-color: #9f3118;
}

.quiz-messenger-checkbox:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10.67px;
    height: 10.67px;
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='9' viewBox='0 0 11 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4.5L4 7.5L10 1.5' stroke='%23FAEEEB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
}

.quiz-messenger-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quiz-messenger-icon img,
.quiz-messenger-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.quiz-messenger-icon.max-icon svg {
    width: 12px;
    height: 12px;
}

.quiz-messenger-text {
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
    color: #070708;
    white-space: nowrap;
}

.quiz-textarea-wrapper {
    width: 100%;
}

.quiz-textarea {
    width: 100%;
    height: 90px;
    background: #ffffff;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
    padding: 8px 16px;
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
    color: #230b05;
    resize: none;
    outline: none;
    box-sizing: border-box;
}

.quiz-textarea::placeholder {
    color: #88898b;
}

.quiz-policy {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.quiz-policy-checkbox-label {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    cursor: pointer;
}

.quiz-policy-checkbox {
    width: 24px;
    height: 24px;
    border: 1.5px solid #ededed;
    border-radius: 3px;
    background-color: #9f3118;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 0;
    position: relative;
    box-sizing: border-box;
}

.quiz-policy-checkbox::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10.67px;
    height: 10.67px;
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='9' viewBox='0 0 11 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4.5L4 7.5L10 1.5' stroke='%23FAEEEB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
}

.quiz-policy-checkbox:not(:checked) {
    background-color: #ffffff;
}

.quiz-policy-checkbox:not(:checked)::after {
    display: none;
}

.quiz-policy-text {
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.1;
    color: #000000;
    flex: 1;
}

.quiz-policy-link {
    color: #9f3118;
    text-decoration: underline;
}

.quiz-step-item[data-step="7"] .quiz-footer {
    justify-content: flex-end;
}

.quiz-submit {
    font-family: 'Playfair', sans-serif;
}

.quiz-step-item[data-step="7"] .quiz-header {
    margin-bottom: 48px;
}

.quiz-step-item[data-step="8"] .quiz-header.final-step {
    margin-bottom: 32px;
}

.quiz-step-item[data-step="8"] .quiz-footer {
    display: none !important;
}

.quiz-question {
    font-family: 'Playfair Display', serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.1;
    color: #230b05;
    flex: 1;
}

.quiz-step {
    font-family: 'Playfair', sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.1;
    color: #230b05;
    white-space: nowrap;
}

.quiz-choices {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px;
}

.quiz-radio-choices {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.quiz-checkbox-choices {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.quiz-radio-option {
    position: relative;
    border-radius: 16px;
    background-color: #eed5c7;
    border: 1px solid #d4a398;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 16px 24px;
    gap: 16px;
    text-align: left;
    font-size: 25px;
    color: #230b05;
    font-family: 'Playfair', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    flex: 1;
    min-width: 0;
    justify-content: flex-start;
}

.quiz-radio-option:hover {
    background-color: #eed5c7;
    border-color: #d4a398;
}

.quiz-radio-option.selected {
    background-color: #eed5c7;
    border-color: #d4a398;
}

.radio-circle {
    height: 24px;
    width: 24px;
    position: relative;
    border-radius: 50%;
    background-color: #fff;
    border: 1.5px solid #ededed;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.quiz-radio-option.selected .radio-circle {
    background-color: #fff;
    border-color: #ededed;
}

.quiz-radio-option.selected .radio-circle::after {
    content: '';
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: #9f3118;
    border: 1px solid #ededed;
    box-sizing: border-box;
    display: block;
}

.radio-text {
    white-space: nowrap;
}

.quiz-checkbox-option {
    position: relative;
    border-radius: 16px;
    background-color: #eed5c7;
    border: 1px solid #d4a398;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 16px 24px;
    gap: 16px;
    text-align: left;
    font-size: 25px;
    color: #230b05;
    font-family: 'Playfair', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    justify-content: flex-start;
}

.quiz-checkbox-option:hover {
    background-color: #eed5c7;
    border-color: #d4a398;
}

.quiz-checkbox-option.selected {
    background-color: #eed5c7;
    border-color: #d4a398;
}

.checkbox-square {
    height: 24px;
    width: 24px;
    position: relative;
    border-radius: 3px;
    background-color: #fff;
    border: 1.5px solid #ededed;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.quiz-checkbox-option.selected .checkbox-square {
    background-color: #9f3118;
    border-color: #9f3118;
}

.quiz-checkbox-option.selected .checkbox-square::after {
    content: '';
    width: 10.67px;
    height: 10.67px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='9' viewBox='0 0 11 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4.5L4 7.5L10 1.5' stroke='%23FAEEEB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
}

.checkbox-text {
    white-space: nowrap;
}

.choice-card {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 282px;
    min-width: 240px;
    padding: 0;
    text-align: left;
    transition: transform 0.2s, opacity 0.2s;
}

.choice-card:hover {
    transform: translateY(-4px);
}

.choice-card:hover .choice-image {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.choice-image {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    background: #e0e0e0;
    position: relative;
    border: 3px solid transparent;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.choice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.choice-card.selected .choice-image {
    border-color: #9f3118;
}

.check-mark {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 48px;
    height: 48px;
    background: #9f3118;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.check-mark svg {
    width: 24px;
    height: 24px;
}

.choice-card.selected .check-mark {
    display: flex;
}

.choice-text {
    font-family: 'Playfair', sans-serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.2;
    color: #230b05;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.choice-text-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: inline-block;
    object-fit: contain;
    margin-top: 0;
}

.choice-description {
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.3;
    color: #230b05;
    margin: 0;
}

.quiz-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quiz-thanks-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.quiz-thanks-text {
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
    color: #230b05;
}

.quiz-contacts {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

.quiz-messengers {
    display: flex;
    gap: 16px;
    align-items: center;
}

.quiz-contact-link {
    display: flex;
    gap: 8px;
    align-items: center;
    text-decoration: underline;
    color: #230b05;
    transition: opacity 0.3s;
}

.quiz-contact-link:hover {
    opacity: 0.7;
}

.quiz-contact-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quiz-contact-icon img,
.quiz-contact-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.quiz-contact-icon.max-icon svg {
    width: 12px;
    height: 12px;
}

.quiz-contact-name {
    font-family: 'Playfair', sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.1;
    color: #230b05;
    text-decoration: underline;
    white-space: nowrap;
}

.quiz-phone,
.quiz-name {
    font-family: 'Playfair', sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.1;
    color: #230b05;
    white-space: nowrap;
}

.quiz-hint {
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
    color: #230b05;
    white-space: nowrap;
}

.quiz-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-icon {
    width: 68px;
    height: 68px;
    border: 1px solid #230b05;
    border-radius: 96px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.5;
}

.btn-icon:disabled {
    cursor: not-allowed;
}

.btn-icon:not(:disabled):hover {
    opacity: 1;
}

/* About Section */
.about-section {
    padding: 96px 0;
    background: #fffbef;
}

.about-content {
    display: flex;
    gap: 64px;
    align-items: flex-start;
    /* margin-bottom: 64px; */
}

.about-image {
    width: 461px;
    height: 467px;
    position: relative;
    flex-shrink: 0;
}

.photo-frame {
    width: 430px;
    height: 430px;
    /* border: 10px solid #ffffff; */
    border-radius: 0;
    position: absolute;
    bottom: 107px;
    left: 4px;
    /* background: #ffffff; */
    overflow: hidden;
    transform: rotate(-3deg);
}

.photo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.photo-image-mobile {
    display: none;
}

.photo-name {
    position: absolute;
    bottom: 7px;
    left: 16px;
    font-family: 'Ouvality', cursive, serif;
    font-size: 91px;
    font-weight: 400;
    font-style: italic;
    line-height: 1;
    color: #ffffff;
    white-space: nowrap;
    transform: rotate(1.885deg);
    pointer-events: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.photo-clip {
    position: absolute;
    top: -82px;
    left: 223px;
    transform: scaleY(-1);
    width: 19px;
    height: 40px;
    z-index: 10;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.25));
}

.clip-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-greeting {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.1;
    color: #230b05;
    margin: 0;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1;
    color: #230b05;
    margin: 0;
}

.about-description {
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
    color: #230b05;
    margin: 0;
}

.section-title-large {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1;
    color: #230b05;
    margin-bottom: 24px;
}

.section-text {
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
    color: #230b05;
}

.about-blocks {
    display: flex;
    gap: 16px;
    position: relative;
}

.about-blocks-wrapper {
    display: flex;
    gap: 16px;
    width: 100%;
}

.about-block {
    flex: 1;
    padding-right: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.block-title {
    font-family: 'Playfair', sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.1;
    color: #230b05;
    margin: 0;
}

.block-text {
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
    color: #230b05;
    margin: 0;
}

.block-text strong {
    font-family: 'Playfair', sans-serif;
    font-weight: 600;
}

/* Services Section */
.services-section {
    padding: 96px 0;
    background: #fffbef;
    position: relative;
    overflow: hidden;
}

.services-section .container {
    position: relative;
}

.section-header-with-controls {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 64px;
}

.section-header-with-controls .section-title {
    flex: 1;
    margin-bottom: 0;
}

.slider-controls {
    display: flex;
    gap: 8px;
}

.slider-btn {
    width: 64px;
    height: 64px;
    border: 1px solid #9f3118;
    border-radius: 1000px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-btn.inactive {
    border-color: rgba(159, 49, 24, 0.25);
    opacity: 0.5;
    cursor: not-allowed;
}

.slider-btn.inactive svg path {
    stroke: rgba(159, 49, 24, 0.25);
}

.slider-btn:hover:not(.inactive) {
    background: #9f3118;
}

.slider-btn:hover:not(.inactive) svg path {
    stroke: #ffffff;
}

.services-grid {
    overflow: hidden;
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: max(calc((100vw - 1632px) / 2), 0px);
    padding-right: max(calc((100vw - 1632px) / 2), 0px);
}

.services-grid-wrapper {
    display: flex;
    gap: 16px;
    transition: transform 0.3s ease-in-out;
    will-change: transform;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    width: 396px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-image {
    width: 100%;
    height: 248px;
    border-radius: 16px;
    background: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 100px;
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
    color: #230b05;
}

.service-title {
    font-family: 'Playfair', sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.1;
    color: #230b05;
    margin: 0;
    margin-bottom: 8px;
}

.service-subtitle {
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
    color: #230b05;
    margin: 0;
    margin-bottom: 16px;
}

.service-options {
    display: flex;
    flex-direction: column;
}

.options-title {
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.5;
    color: #230b05;
    margin-bottom: 10px;
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.option-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(35, 11, 5, 0.1);
    margin-bottom: 8px;
}

.option-item span {
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
    color: #230b05;
}

.option-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

/* Travel Types Section */
.travel-types-section {
    padding: 96px 0;
    background: #fffbef;
    position: relative;
    overflow: hidden;
}

.travel-types-section .container {
    position: relative;
}

.travel-cards {
    overflow: hidden;
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: max(calc((100vw - 1632px) / 2), 0px);
    padding-right: max(calc((100vw - 1632px) / 2), 0px);
}

.travel-cards-wrapper {
    display: flex;
    gap: 16px;
    transition: transform 0.3s ease-in-out;
    will-change: transform;
}

.travel-card {
    width: 396px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.travel-image {
    width: 100%;
    height: 322px;
    position: relative;
    transform: none;
}

.travel-image .photo-frame {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 396px;
    height: 300px;
    border: 10px solid #ffffff;
    background: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
    transform: none !important;
    border-radius: 0;
    top: auto;
    right: auto;
}

.travel-image .photo-frame .photo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: none;
}

.travel-image .photo-clip {
    position: absolute;
    top: 1.78px;
    left: 50%;
    transform: translateX(-50%) scaleY(-1);
    width: 19px;
    height: 40px;
    z-index: 1;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.25));
}

.travel-title {
    font-family: 'Playfair', sans-serif !important;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.1;
    color: #230b05;
    padding-right: 16px;
}

.travel-text {
    font-family: 'Playfair', sans-serif !important;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
    color: #230b05;
    padding-right: 16px;
    margin: 0;
}

.travel-text em {
    font-style: italic;
    font-weight: 600;
    font-size: 21px !important;
}

.travel-text strong {
    font-family: 'Playfair', sans-serif;
    font-weight: 600;
}

.travel-text strong {
    font-weight: 600;
}

/* Destinations Section */
.destinations-section {
    padding: 96px 0;
    background: #fffbef;
}

.destinations-section .section-title {
    margin-bottom: 64px;
}

.destinations-widget {
    width: 100%;
    min-height: 280px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

/* Стили для встроенного виджета турвизора */
.destinations-widget iframe,
.destinations-widget > div {
    width: 100%;
    min-height: 280px;
    border: none;
    display: block;
}

/* Reviews Section */
.reviews-section {
    padding: 96px 0;
    background: #fffbef;
}

.reviews-section .section-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.reviews-link {
    display: flex;
    gap: 16px;
    align-items: center;
}

.reviews-link span:first-child {
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
    color: #230b05;
    white-space: nowrap;
}

.vk-link {
    display: flex;
    gap: 8px;
    align-items: center;
    font-family: 'Playfair', sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.4;
    color: #230b05;
    text-decoration: underline;
}

.vk-icon {
    width: 24px;
    height: 24px;
    background: #0077ff;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vk-icon::after {
    content: '';
    width: 14px;
    height: 9px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.25 0.5H13.75C13.8611 0.5 13.9583 0.541667 14.0417 0.625C14.125 0.708333 14.1667 0.805556 14.1667 0.916667V8.08333C14.1667 8.19444 14.125 8.29167 14.0417 8.375C13.9583 8.45833 13.8611 8.5 13.75 8.5H12.25C12.1389 8.5 12.0417 8.45833 11.9583 8.375C11.875 8.29167 11.8333 8.19444 11.8333 8.08333V0.916667C11.8333 0.805556 11.875 0.708333 11.9583 0.625C12.0417 0.541667 12.1389 0.5 12.25 0.5ZM9.91667 3.33333V7.41667H8.41667V3.33333C8.41667 3.22222 8.375 3.125 8.29167 3.04167C8.20833 2.95833 8.11111 2.91667 8 2.91667H6.5C6.38889 2.91667 6.29167 2.95833 6.20833 3.04167C6.125 3.125 6.08333 3.22222 6.08333 3.33333V7.41667H4.58333V4.58333C4.58333 4.47222 4.54167 4.375 4.45833 4.29167C4.375 4.20833 4.27778 4.16667 4.16667 4.16667H2.66667C2.55556 4.16667 2.45833 4.20833 2.375 4.29167C2.29167 4.375 2.25 4.47222 2.25 4.58333V7.41667H0.75V0.916667C0.75 0.805556 0.791667 0.708333 0.875 0.625C0.958333 0.541667 1.05556 0.5 1.16667 0.5H2.66667C2.77778 0.5 2.875 0.541667 2.95833 0.625C3.04167 0.708333 3.08333 0.805556 3.08333 0.916667V3.08333H4.58333V0.916667C4.58333 0.805556 4.625 0.708333 4.70833 0.625C4.79167 0.541667 4.88889 0.5 5 0.5H6.5C6.61111 0.5 6.70833 0.541667 6.79167 0.625C6.875 0.708333 6.91667 0.805556 6.91667 0.916667V3.08333H8.41667V0.916667C8.41667 0.805556 8.45833 0.708333 8.54167 0.625C8.625 0.541667 8.72222 0.5 8.83333 0.5H10.3333C10.4444 0.5 10.5417 0.541667 10.625 0.625C10.7083 0.708333 10.75 0.805556 10.75 0.916667V7.41667H9.91667V3.33333Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
}

.reviews-grid {
    display: flex;
    gap: 16px;
    margin-top: 64px;
}

.review-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.review-item {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.review-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

/* Специфичные скругления для разных изображений согласно дизайну */
.review-column:first-child .review-item .review-image {
    border-radius: 12.545px;
}

.review-column:nth-child(2) .review-item:first-child .review-image {
    border-radius: 12.568px;
}

.review-column:nth-child(2) .review-item:nth-child(2) .review-image {
    border-radius: 7.181px;
}

.review-column:nth-child(3) .review-item .review-image {
    border-radius: 8.523px;
}

.review-column:first-child .review-item {
    height: 346px;
}

.review-column:nth-child(2) .review-item:first-child {
    height: 251px;
}

.review-column:nth-child(2) .review-item:last-child {
    height: 143px;
}

.review-column:last-child .review-item {
    height: 170px;
}

/* Social Section */
.social-section {
    padding: 96px 0;
    background: #b35b45;
}

.social-card {
    background: #ffffff;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.social-content {
    padding: 48px;
    flex: 1;
    max-width: 1132px;
}

.social-title {
    font-family: 'Playfair Display', serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.1;
    color: #230b05;
    margin-bottom: 16px;
}

.social-text {
    font-family: 'Playfair', sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.4;
    color: #230b05;
    margin-bottom: 32px;
}

.social-buttons {
    display: flex;
    gap: 16px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border-radius: 8px;
    font-family: 'Playfair', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-btn:hover {
    opacity: 0.9;
}

.social-btn-telegram {
    background: #27a7e7;
}

.social-btn-vk {
    background: #0077ff;
}

.social-btn-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-image {
    width: 500px;
    height: 100%;
    min-height: 400px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-image-wrapper {
    position: absolute;
    left: -64px;
    top: 19px;
    transform: rotate(6.67deg);
    width: 735.805px;
    height: 572.293px;
    max-width: 797.299px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-image-main {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Hot Tours Section */
.hot-tours-section {
    padding: 96px 0;
    background: #fffbef;
}

.hot-tours-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 64px;
}

.hot-tours-header .section-title {
    margin-bottom: 0;
}

.hot-tours-subtitle {
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
    color: #230b05;
    margin: 0;
}

.hot-tours-widget {
    width: 100%;
    min-height: 429px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

/* Стили для встроенного модуля турвизора */
.hot-tours-widget iframe,
.hot-tours-widget > div {
    width: 100%;
    min-height: 429px;
    border: none;
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 96px 0;
    background: #fffbef;
}

.cta-card {
    background: #b35b45;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 48px;
    gap: 48px;
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-text {
    font-family: 'Playfair', sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 32px;
}

.cta-features {
    margin-bottom: 32px;
}

.cta-features-title {
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 16px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.feature-item {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    gap: 16px;
    align-items: center;
    height: 74px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.feature-item span {
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    white-space: nowrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: #ffffff;
    border-radius: 8px;
    font-family: 'Playfair', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    color: #581b0d;
    text-decoration: none;
    transition: opacity 0.3s;
}

.cta-button:hover {
    opacity: 0.9;
}

.cta-image {
    width: 408px;
    height: 408px;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.cta-image .photo-frame {
    width: 408px;
    height: 408px;
    border: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 4.28px)) rotate(3deg);
    background: transparent;
    overflow: hidden;
    box-sizing: border-box;
}

.cta-image .photo-frame .photo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-image .photo-name {
    position: absolute;
    bottom: 88.219px;
    left: 28.13px;
    width: 162.644px;
    height: 88.219px;
    font-family: 'Ouvality', sans-serif;
    font-size: 82.697px;
    font-weight: 400;
    line-height: 1;
    color: #ffffff;
    transform: rotate(358.115deg);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 5;
}

.cta-image .photo-clip {
    position: absolute;
    top: -6px;
    left: 200px;
    transform: scaleY(-1);
    width: 17.167px;
    height: 36.223px;
    z-index: 10;
    filter: drop-shadow(0.905px 0.905px 1.809px rgba(0, 0, 0, 0.25));
}

/* How It Works Section */
.how-it-works-section {
    padding: 96px 0;
    background: #fffbef;
    position: relative;
}

.how-it-works-section .container {
    position: relative;
    /* padding: 0 144px; */
}

.how-it-works-section .section-title {
    margin-bottom: 64px;
}

.steps-container {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 48px;
    position: relative;
    z-index: 2;
    padding-left: 0;
}

.steps-lines {
    position: absolute;
    top: 47.11px;
    left: 0;
    right: 0;
    height: auto;
    z-index: 0;
    pointer-events: none;
    overflow: visible;
}

.step-line {
    position: absolute;
    width: 335px;
    height: auto;
    display: block;
    object-fit: contain;
    top: 0;
}

.step-line-1 {
    left: calc((100% / 5) + (16px / 2) - 218.5px);
}

.step-line-2 {
    left: calc((100% / 5) * 2 + (16px / 2) - 214.5px);
}

.step-line-3 {
    left: calc((100% / 5) * 3 + (16px / 2) - 273.5px);
}

.step-line-4 {
    left: calc((100% / 5) * 4 + (16px / 2) - 209.5px);
}

.step-item {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 24px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.step-image {
    /* width: 100%; */
    height: 100px;
    background: #fffbef;
    border-radius: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.step-image img {
    position: relative;
    z-index: 3;
}

.step-image-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.step-item:last-child .step-image {
    transform: rotate(30deg);
}

.step-number {
    width: 48px;
    height: 48px;
    border: 1px solid #230b05;
    border-radius: 96px;
    background: #fffbef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
    color: #230b05;
    flex-shrink: 0;
}

.step-text {
    font-family: 'Playfair', sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.4;
    color: #230b05;
    margin: 0;
    font-weight: 400;
    line-height: 1.4;
    color: #230b05;
}

/* FAQ Section */
.faq-section {
    padding: 96px 0;
    background: #fffbef;
}

.faq-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 64px;
    align-items: flex-start;
}

.faq-card {
    background: #f7e9dd;
    border-radius: 8px;
    padding: 16px;
    width: 396px;
    min-width: 396px;
    max-width: 396px;
    height: 160px;
    flex: 0 0 396px;
    flex-shrink: 0;
    flex-grow: 0;
    cursor: pointer;
    transition: background 0.3s ease, height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
    align-self: flex-start;
    box-sizing: border-box;
}

.faq-card.opened {
    height: 320px;
    transition: background 0.3s ease, height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card:hover {
    background: #f0ddd0;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-number {
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: #9f3118;
    white-space: nowrap;
}

.faq-arrow {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card.opened .faq-arrow {
    transform: rotate(180deg);
}

.faq-question {
    font-family: 'Playfair', sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;
    color: #230b05;
    margin: 0;
}

.faq-answer {
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
    color: #230b05;
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
    margin-top: 0;
    transform: translateY(-10px);
    visibility: hidden;
}

.faq-card.opened .faq-answer {
    max-height: 500px;
    opacity: 1;
    margin-top: 0;
    transform: translateY(0);
    visibility: visible;
    transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
}

/* Best Option Section */
.best-option-section {
    padding: 96px 0;
    background: #fffbef;
}

.best-option-card {
    background: #b35b45;
    border-radius: 32px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.best-option-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-width: 0;
}

.best-option-title {
    font-family: 'Playfair Display', serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
}

.best-option-text {
    font-family: 'Playfair', sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
}

.best-option-images {
    width: 700px;
    height: 343px;
    position: relative;
    flex-shrink: 0;
}

.best-option-image-large {
    position: absolute;
    top: 50%;
    left: calc(50% + 86px);
    transform: translate(-50%, -50%) rotate(1.8deg);
    width: 338px;
    height: 343px;
}

.best-option-image-large .best-photo-frame {
    width: 307px;
    height: 307px;
    border: 7px solid #ffffff;
    background: #ffffff;
    overflow: hidden;
    position: absolute;
    bottom: 11px;
    left: 11px;
}

.best-option-image-large .best-photo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.best-option-image-large .best-photo-clip {
    position: absolute;
    top: 11px;
    left: 159px;
    width: 14px;
    height: 29px;
    z-index: 10;
    transform: scaleY(-1);
    filter: drop-shadow(0.713px 0.713px 1.426px rgba(0, 0, 0, 0.25));
}

.best-option-image-small {
    position: absolute;
    top: 50%;
    left: calc(50% - 110px);
    transform: translate(-50%, -50%) rotate(-9deg);
    width: 260px;
    height: 264px;
}

.best-option-image-small .best-photo-frame {
    width: 243px;
    height: 243px;
    border: 6px solid #ffffff;
    background: #ffffff;
    overflow: hidden;
    position: absolute;
    bottom: 9px;
    left: 9px;
}

.best-option-image-small .best-photo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.best-option-image-small .best-photo-clip {
    position: absolute;
    top: 1px;
    left: 126px;
    width: 11px;
    height: 23px;
    z-index: 10;
    transform: scaleY(-1);
    filter: drop-shadow(0.565px 0.565px 1.131px rgba(0, 0, 0, 0.25));
}

.best-photo-clip .clip-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Footer */
.footer {
    background: #fffbef;
    padding: 96px 0 64px;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 96px;
}

.footer-line-top,
.footer-line-bottom {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.footer-line-top {
    margin-bottom: 64px;
}

.footer-line-bottom {
    margin-top: 64px;
    margin-bottom: 64px;
}

.footer-line-image {
    width: 100%;
    max-width: 1630px;
    height: auto;
    display: block;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 64px;
}

.footer-info {
    max-width: 671px;
}

.footer-name {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
}

.name-bold {
    font-family: 'Playfair', sans-serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.1;
    color: #9f3118;
}

.name-phone {
    font-family: 'Playfair', sans-serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.1;
    color: #9f3118;
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.1;
    color: #230b05;
}

.footer-columns {
    display: flex;
    gap: 32px;
    max-width: 808px;
}

.footer-column {
    flex: 1;
    min-width: 259px;
}

.footer-column-title {
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
    color: #230b05;
    opacity: 0.5;
    margin-bottom: 8px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-links li {
    padding: 8px 0;
}

.footer-links a {
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
    color: #230b05;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
}

.footer-logo {
    height: 234px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.footer-logo-image {
    width: 100%;
    max-width: 1606px;
    height: 235px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    margin-top: 64px;
}

.footer-disclaimer {
    font-family: 'Playfair', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    max-width: 671px;
}

.footer-copyright {
    font-family: 'Playfair', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    white-space: nowrap;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 505px;
}

.footer-legal a {
    font-family: 'Playfair', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #9f3118;
    text-decoration: underline;
}

.footer-legal a:hover {
    opacity: 0.7;
}

/* Адаптивность */
/* Контейнер всегда имеет максимальную ширину 1632px */

@media (max-width: 1440px) {
    .container {
        padding: 0 80px;
    }
    
    .hero-title {
        font-size: 64px;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .services-grid {
        padding-left: 80px;
        padding-right: 80px;
    }
    
    .travel-cards {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 0;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-blocks {
        flex-direction: column;
    }
    
    .services-grid {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .travel-cards {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .services-grid,
    .travel-cards {
        flex-direction: column;
    }
    
    .service-card,
    .travel-card {
        width: 100%;
    }
    
    .hero-widget {
        width: calc(100% - 80px);
        padding: 0 40px;
    }
    
    .field-group {
        flex-wrap: wrap;
        height: auto;
        min-height: 64px;
        padding: 8px;
    }
    
    .widget-field {
        flex: 1 1 calc(50% - 8px);
        min-width: 140px;
        padding: 8px;
    }
    
    .widget-footer {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-field:first-child {
        width: 100%;
    }
    
    .footer-fields {
        flex-direction: column;
        width: 100%;
    }
    
    .footer-fields .footer-field {
        width: 100%;
    }
}

@media (max-width: 768px) {
    /* Mobile Header */
    .header {
        padding: 25px 20px;
        height: 82px;
        background: #fffbef;
        border-bottom: 1px solid rgba(35, 11, 5, 0.1);
    }

    .header.scrolled {
        background: #fffbef;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .logo {
        width: 165px;
        height: 24px;
    }

    .logo-image {
        display: none;
    }

    .logo-image-mobile {
        display: block;
        max-width: 100%;
        max-height: 24px;
        object-fit: contain;
    }

    .header-contacts {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: auto;
        padding: 32px 0;
        position: relative;
    }

    .hero-background {
        height: 100%;
        min-height: 847px;
    }

    .hero-background-image {
        width: 376px;
        height: 847px;
        left: calc(50% + 0.5px);
        top: 0;
        transform: translateX(-50%);
    }

    .hero-background-image::before {
        background-size: 276.54% auto;
        background-position: -88.21% -4.35%;
    }

    .hero-top-lightener {
        width: 493px;
        height: 493px;
        left: calc(50% + 0.5px);
        top: calc(50% - 325px);
        transform: translate(-50%, -50%);
        background: radial-gradient(circle, rgba(255, 250, 240, 0.8) 0%, transparent 70%);
    }

    .hero-polaroid-images {
        display: none;
    }

    .hero-content .hero-polaroid-images-mobile {
        display: block;
    }

    .polaroid-1 {
        left: -0.63px;
        top: -0.84px;
        width: 207.252px;
        height: 179.672px;
        transform: rotate(350deg);
    }

    .polaroid-1 .polaroid-photo {
        width: 177.333px;
        height: 133px;
        left: 3.25px;
        top: 13.67px;
        border-width: 6.65px;
    }

    .polaroid-1 .polaroid-clip {
        left: 70.33px;
        top: -1.11px;
        width: 14.894px;
        height: 27.628px;
        transform: rotate(185deg) scaleY(-1);
    }

    .polaroid-2 {
        left: 144.71px;
        top: 74.74px;
        width: 196.868px;
        height: 165.507px;
        transform: rotate(5deg);
    }

    .polaroid-2 .polaroid-photo {
        width: 177.333px;
        height: 133px;
        left: 3.46px;
        top: 13.4px;
        border-width: 6.65px;
    }

    .polaroid-2 .polaroid-clip {
        left: 75.61px;
        top: -2.3px;
        width: 22.151px;
        height: 29.452px;
        transform: rotate(203.378deg) scaleY(-1);
    }

    .polaroid-3,
    .polaroid-4 {
        display: none;
    }

    /* Hide desktop polaroids in hero-background on mobile */
    .hero-background .hero-polaroid-images {
        display: none;
    }

    .hero-content .hero-polaroid-images-mobile {
        display: block;
    }

    .hero-content {
        margin-top: 0;
        text-align: left;
        padding: 0 23px;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

    .hero-title {
        font-size: 31px;
        line-height: 1.1;
        margin-bottom: 0;
        text-align: left;
        width: 100%;
        margin-top: 75px;
    }

    .hero-title .italic {
        font-style: normal;
    }

    .hero-polaroid-images-mobile {
        display: block;
        position: relative;
        width: 335px;
        height: 236px;
        margin: 0;
    }

    .hero-polaroid-images-mobile .polaroid-image {
        position: absolute;
    }

    .hero-polaroid-images-mobile .polaroid-1 {
        left: -0.63px;
        top: -0.84px;
        width: 207.252px;
        height: 179.672px;
        transform: rotate(350deg);
    }

    .hero-polaroid-images-mobile .polaroid-1 .polaroid-photo {
        position: absolute;
        width: 177.333px;
        height: 133px;
        left: 3.25px;
        top: 13.67px;
        border-width: 6.65px;
    }

    .hero-polaroid-images-mobile .polaroid-1 .polaroid-clip {
        position: absolute;
        left: 70.33px;
        top: -1.11px;
        width: 14.894px;
        height: 27.628px;
        transform: rotate(185deg) scaleY(-1);
    }

    .hero-polaroid-images-mobile .polaroid-2 {
        left: 144.71px;
        top: 74.74px;
        width: 196.868px;
        height: 165.507px;
        transform: rotate(5deg);
    }

    .hero-polaroid-images-mobile .polaroid-2 .polaroid-photo {
        position: absolute;
        width: 177.333px;
        height: 133px;
        left: 3.46px;
        top: 13.4px;
        border-width: 6.65px;
    }

    .hero-polaroid-images-mobile .polaroid-2 .polaroid-clip {
        position: absolute;
        left: 75.61px;
        top: -2.3px;
        width: 22.151px;
        height: 29.452px;
        transform: rotate(203.378deg) scaleY(-1);
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 0;
        text-align: left;
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        align-items: stretch;
        margin-bottom: 0;
    }

    .btn {
        font-size: 16px;
        padding: 16px 32px;
        width: 100%;
        font-weight: 400;
        text-decoration: none;
    }

    .btn-secondary {
        border-color: #dfbab2;
        color: #260700;
        text-decoration: none;
    }

    .hero-widget {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        padding: 0 23px;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .widget-intro {
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 0;
    }

    .tour-widget {
        display: none;
    }

    .tour-widget-image-mobile {
        display: block;
        width: 329px;
        height: 373px;
        position: relative;
        overflow: hidden;
    }

    .widget-mobile-img {
        width: 114.21%;
        height: 128.95%;
        object-fit: cover;
        object-position: -7.1% 0;
        max-width: none;
    }

    .widget-intro {
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 16px;
    }
    
    .widget-fields {
        flex-direction: column;
        gap: 12px;
    }
    
    .field-group {
        width: 100%;
        padding: 12px 8px;
    }
    
    .widget-field {
        flex: 1 1 100%;
        padding: 8px;
    }
    
    .field-divider {
        display: none;
    }
    
    .search-btn {
        width: 100%;
        height: 56px;
    }
    
    .widget-footer {
        padding: 16px;
    }
    
    .tour-widget {
        padding: 16px;
    }

    /* Quiz Section Mobile */
    .quiz-section {
        padding: 32px 0;
    }

    .section-header {
        margin-bottom: 32px;
        padding: 0 23px;
    }

    .section-title {
        font-size: 34px;
        line-height: 1;
        margin-bottom: 16px;
    }

    .section-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }

    .quiz-form {
        padding: 24px 16px 16px;
        margin: 0 23px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .quiz-progress {
        height: 10px;
        border-radius: 4px 4px 0 0;
    }

    .progress-bar {
        border-radius: 4px 4px 0 0;
    }

    .quiz-header {
        margin-bottom: 0;
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .quiz-question {
        font-size: 28px;
        line-height: 1.1;
        width: 100%;
        margin-bottom: 16px;
    }

    .quiz-step {
        display: none;
    }

    .quiz-choices {
        gap: 8px;
        margin-bottom: 0;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .choice-card {
        width: calc((100% - 8px) / 2);
        max-width: 144px;
        min-width: 144px;
        gap: 4.1px;
        flex: 0 0 auto;
    }

    .choice-image {
        height: 102.49px;
        border-radius: 8.199px;
        border-width: 1.537px;
    }

    .choice-card.selected .choice-image {
        border-width: 1.537px;
    }

    .check-mark {
        width: 24.598px;
        height: 24.598px;
        top: 3.59px;
        right: 3.59px;
        border-radius: 50%;
    }

    .check-mark svg {
        width: 12.299px;
        height: 12.299px;
    }

    .choice-text {
        font-size: 18px;
        line-height: 1.4;
        font-weight: 400;
        margin-bottom: 16px;
    }

    .quiz-footer {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .quiz-buttons {
        gap: 8px;
        width: 100%;
        margin-bottom: 0;
    }

    .btn-icon {
        width: 58px;
        height: 58px;
        flex-shrink: 0;
        padding: 10.235px;
    }

    .btn-icon svg {
        width: 20.471px;
        height: 20.471px;
    }

    .quiz-next {
        flex: 1;
        height: 56px;
        padding: 12px 32px;
        font-size: 14px;
        line-height: 1.5;
        font-weight: 400;
    }

    .quiz-next span {
        font-size: 14px;
    }

    .quiz-next .arrow-icon {
        width: 20px;
        height: 20px;
    }

    .quiz-hint {
        font-size: 14px;
        line-height: 1.5;
        white-space: normal;
        margin-top: 0;
        margin-bottom: 16px;
    }

    /* Quiz Steps 2, 3, 5, 6 - Radio buttons mobile */
    .quiz-radio-choices {
        gap: 8px;
        margin-bottom: 16px;
        flex-direction: column;
    }

    .quiz-radio-option {
        padding: 16px;
        font-size: 18px;
        line-height: 1.4;
        gap: 16px;
        border-radius: 16px;
        background-color: #eed5c7;
        border: 1px solid #d4a398;
    }

    .radio-circle {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .quiz-radio-option.selected .radio-circle::after {
        width: 12px;
        height: 12px;
    }

    /* Quiz Step 5 - Checkbox options mobile */
    .quiz-checkbox-choices {
        gap: 8px;
        margin-bottom: 16px;
        flex-direction: column;
    }

    .quiz-checkbox-option {
        padding: 16px;
        font-size: 18px;
        line-height: 1.4;
        gap: 16px;
        border-radius: 16px;
        background-color: #eed5c7;
        border: 1px solid #d4a398;
    }

    .checkbox-square {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    /* Quiz Step 4 - Country cards with description mobile */
    .quiz-step-item[data-step="4"] .choice-card {
        width: calc((100% - 8px) / 2);
        max-width: 144px;
        min-width: 144px;
        gap: 4.17px;
    }

    .quiz-step-item[data-step="4"] .choice-image {
        height: 104.255px;
        border-radius: 8.34px;
        border-width: 1.564px;
    }

    .quiz-step-item[data-step="4"] .choice-card.selected .choice-image {
        border-width: 1.564px;
    }

    .quiz-step-item[data-step="4"] .check-mark {
        width: 25.021px;
        height: 25.021px;
        top: 3.65px;
        right: 3.65px;
    }

    .quiz-step-item[data-step="4"] .check-mark svg {
        width: 12.511px;
        height: 12.511px;
    }

    .quiz-step-item[data-step="4"] .choice-text {
        font-size: 18px;
        line-height: 1.4;
    }

    .choice-description {
        font-size: 14px;
        line-height: 1.5;
        margin-top: 0;
    }

    /* Quiz Step 7 - Final step with forms mobile */
    .quiz-step-item[data-step="7"] .quiz-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 0;
    }

    .quiz-step-item[data-step="7"] .quiz-subtitle {
        font-size: 16px;
        line-height: 1.5;
        font-weight: 400;
    }

    .quiz-form-fields {
        gap: 24px;
        width: 100%;
    }

    .quiz-inputs-row {
        flex-direction: column;
        gap: 16px;
    }

    .quiz-input-wrapper {
        height: auto;
        padding: 16px;
        padding-left: 16px;
        padding-right: 8px;
        gap: 8px;
    }

    .quiz-input-icon {
        width: 20px;
        height: 20px;
    }

    .quiz-input {
        font-size: 14px;
    }

    .quiz-input::placeholder {
        font-size: 14px;
    }

    .quiz-messenger-options {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .quiz-messenger-option {
        gap: 4px;
    }

    .quiz-messenger-checkbox {
        width: 24px;
        height: 24px;
        border-width: 1.429px;
        border-radius: 2.857px;
    }

    .quiz-messenger-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .quiz-textarea-wrapper {
        width: 100%;
    }

    .quiz-textarea {
        padding: 8px 16px;
        font-size: 14px;
        min-height: auto;
    }

    .quiz-textarea::placeholder {
        font-size: 14px;
    }

    .quiz-policy {
        width: 100%;
    }

    .quiz-policy-checkbox-label {
        gap: 16px;
        align-items: flex-start;
        margin-bottom: 16px;
    }

    .quiz-policy-checkbox {
        width: 24px;
        height: 24px;
        border-width: 1.429px;
        border-radius: 2.857px;
        margin-top: 0;
        flex-shrink: 0;
    }

    .quiz-policy-checkbox:checked {
        background-color: #9f3118;
        border-color: #ededed;
    }

    .quiz-policy-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .quiz-policy-link {
        color: #9f3118;
    }

    /* Quiz Step 8 - Final thank you screen mobile */
    .quiz-step-item[data-step="8"] .quiz-header.final-step {
        margin-bottom: 0;
    }

    .quiz-step-item[data-step="8"] .quiz-question {
        font-size: 28px;
        line-height: 1.1;
        text-align: left;
    }

    .quiz-thanks-content {
        gap: 16px;
    }

    .quiz-thanks-text {
        font-size: 16px;
        line-height: 1.5;
    }

    .quiz-contacts {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .quiz-messengers {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        width: 100%;
    }

    .quiz-contact-link {
        gap: 8px;
        text-decoration: underline;
    }

    .quiz-contact-icon {
        width: 24px;
        height: 24px;
    }

    .quiz-contact-name {
        font-size: 16px;
        line-height: 1.5;
    }

    .quiz-phone,
    .quiz-name {
        font-size: 18px;
        line-height: 1.4;
    }

    /* About Section Mobile */
    .about-section {
        padding: 32px 0;
        overflow-x: hidden;
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 8px;
        padding: 0 23px;
        margin-bottom: 16px;
        position: relative;
    }

    .about-content .about-text {
        grid-column: 1;
        grid-row: 1;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .about-content .about-text .about-greeting {
        font-size: 28px;
        line-height: 1.1;
        font-style: normal;
        margin: 0;
        font-family: 'Playfair Display', serif;
    }

    .about-content .about-text .about-title {
        font-size: 16px;
        line-height: 1.5;
        margin: 0;
        font-family: 'Playfair', sans-serif;
        font-weight: 400;
    }

    .about-content .about-image {
        grid-column: 2;
        grid-row: 1;
        width: 163px;
        height: 167.093px;
        flex-shrink: 0;
        position: relative;
        justify-self: end;
        align-self: start;
    }

    .about-content .about-text .about-description {
        position: absolute;
        width: 90%;
        top: 100%;
        margin-top: 8px;
        font-size: 16px;
        line-height: 1.5;
        padding: 0;
        font-family: 'Playfair', sans-serif;
        box-sizing: border-box;
    }

    /* Add spacing before blocks */
    .about-blocks {
        margin-top: 0;
    }

    .photo-frame {
        width: 152.235px;
        height: 153.849px;
        bottom: 5.42px;
        left: 5.45px;
        transform: skewX(359.929deg);
        border: 3.557px solid white;
        position: absolute;
    }

    .photo-image-desktop {
        display: none;
    }

    .photo-image-mobile {
        display: block;
    }

    .photo-name {
        position: absolute;
        bottom: 66.9px;
        left: 7.38px;
        font-family: 'Ouvality', cursive, serif;
        font-size: 32.518px;
        font-weight: 400;
        line-height: 1;
        color: #ffffff;
        white-space: nowrap;
        transform: rotate(358.092deg) skewX(359.956deg);
        pointer-events: none;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        z-index: 2;
    }

    .photo-clip {
        top: 0.66px;
        left: 78.83px;
        width: 6.75px;
        height: 14.243px;
        transform: scaleY(-1);
        position: absolute;
        z-index: 10;
        filter: drop-shadow(0.356px 0.356px 0.711px rgba(0, 0, 0, 0.25));
    }

    .about-blocks {
        overflow-x: auto;
        overflow-y: hidden;
        position: relative;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
        margin-left: 16px;
    }

    .about-blocks::-webkit-scrollbar {
        display: none;
    }

    .about-blocks-wrapper {
        display: flex;
        gap: 16px;
        width: max-content;
        margin-top: 90px;
        padding-left: 23px;
        margin-left: 23px;
    }

    .about-blocks-wrapper .about-block:last-child {
        margin-right: 23px;
    }

    .about-block {
        flex: 0 0 248px;
        min-width: 248px;
        max-width: 248px;
        padding: 16px;
        background: white;
        border-radius: 16px;
        gap: 8px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
    }

    .block-title {
        font-size: 24px;
        line-height: 1.1;
        font-weight: 400;
        margin: 0;
        font-family: 'Playfair', sans-serif;
    }

    .block-text {
        font-size: 16px;
        line-height: 1.5;
        font-weight: 400;
        margin: 0;
        font-family: 'Playfair', sans-serif;
    }

    .block-text br {
        display: none;
    }

    /* Services Section Mobile */
    .services-section {
        padding: 32px 0;
    }

    .services-section .container {
        padding: 0;
    }

    .section-header-with-controls {
        padding: 0 23px;
        margin-bottom: 32px;
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .services-section .section-title {
        font-size: 34px;
        line-height: 1;
        font-family: 'Playfair Display', serif;
    }

    .slider-controls {
        display: none;
    }

    .services-grid {
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 23px;
        margin-left: 0;
        margin-right: 0;
        padding-left: 23px;
        padding-right: 0;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
        margin-left: 23px;
    }

    .services-grid::-webkit-scrollbar {
        display: none;
    }

    .services-grid-wrapper {
        display: flex;
        gap: 16px;
        width: max-content;
        padding-right: 23px;
    }

    .service-card {
        flex: 0 0 248px;
        min-width: 248px;
        max-width: 248px;
        width: 248px;
        height: 440px;
        padding: 16px;
        background: white;
        border-radius: 16px;
        gap: 16px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
    }

    .service-card:nth-child(2),
    .service-card:nth-child(3),
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        padding: 24px;
    }

    .service-image {
        width: 100%;
        height: 150px;
        border-radius: 16px;
        flex-shrink: 0;
    }

    .service-title {
        font-size: 24px;
        line-height: 1.1;
        margin: 0;
        margin-bottom: 0;
    }

    .service-subtitle {
        font-size: 16px;
        line-height: 1.5;
        margin: 0;
        margin-bottom: 0;
    }

    .service-badge {
        font-size: 14px;
        padding: 8px 16px;
    }

    .service-options {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .options-title {
        font-size: 16px;
        font-weight: 600;
        line-height: 1.5;
        margin: 0;
        margin-bottom: 0;
    }

    .options-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .option-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(35, 11, 5, 0.1);
        margin-bottom: 0;
    }

    .option-item:last-child {
        margin-bottom: 0;
    }

    .option-item span {
        font-size: 14px;
        line-height: 1.5;
        flex: 1;
    }

    .option-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .service-content {
        gap: 16px;
    }

    /* Travel Types Section Mobile */
    .travel-types-section {
        padding: 32px 0;
    }

    .travel-types-section .container {
        padding: 0;
    }

    .travel-types-section .section-header-with-controls {
        padding: 0 23px;
        margin-bottom: 32px;
    }

    .travel-types-section .section-title {
        font-size: 34px;
        line-height: 1;
        font-family: 'Playfair Display', serif;
    }

    .travel-cards {
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 23px;
        margin-left: 23px;
        margin-right: 0;
        padding-left: 23px;
        padding-right: 0;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
    }

    .travel-cards::-webkit-scrollbar {
        display: none;
    }

    .travel-cards-wrapper {
        display: flex;
        gap: 16px;
        width: max-content;
        padding-right: 23px;
    }

    .travel-card {
        flex: 0 0 248px;
        min-width: 248px;
        max-width: 248px;
        width: 248px;
        display: flex;
        flex-direction: column;
        gap: 24px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        box-sizing: border-box;
    }

    .travel-image {
        width: 248px;
        height: 201px;
        position: relative;
    }

    .travel-image .photo-frame {
        position: absolute;
        bottom: -0.44px;
        left: -0.25px;
        width: 248px;
        height: 187.879px;
        border: 6.263px solid #ffffff;
        background: #ffffff;
        overflow: hidden;
        box-sizing: border-box;
    }

    .travel-image .photo-clip {
        position: absolute;
        top: 1.09px;
        left: 50%;
        transform: translateX(-50%) scaleY(-1);
        width: 11.862px;
        height: 25.028px;
        z-index: 1;
        filter: drop-shadow(0.625px 0.625px 1.25px rgba(0, 0, 0, 0.25));
    }

    .travel-title {
        font-size: 24px;
        line-height: 1.1;
        margin: 0;
        padding-right: 16px;
    }

    .travel-text {
        font-size: 16px;
        line-height: 1.5;
        margin: 0;
        padding-right: 16px;
    }

    .travel-text em {
        font-size: 16px !important;
        font-style: italic;
        font-weight: 600;
    }

    .travel-text strong {
        font-size: 16px !important;
        font-weight: 600;
    }

    /* Destinations Section Mobile */
    .destinations-section {
        padding: 32px 0;
    }

    .destinations-section .container {
        padding: 0 23px;
    }

    .destinations-section .section-title {
        font-size: 34px;
        line-height: 1;
        font-family: 'Playfair Display', serif;
        margin-bottom: 32px;
    }

    .destinations-widget {
        width: 100%;
        height: 156px;
        min-height: 156px;
        position: relative;
        overflow: hidden;
    }

    .destinations-widget iframe,
    .destinations-widget > div {
        width: 100%;
        height: 156px;
        min-height: 156px;
    }

    /* Reviews Section Mobile */
    .reviews-section {
        padding: 32px 0;
    }

    .reviews-section .container {
        padding: 0 23px;
    }

    .reviews-section .section-header {
        gap: 24px;
        margin-bottom: 32px;
    }

    .reviews-section .section-title {
        font-size: 34px;
        line-height: 1;
        font-family: 'Playfair Display', serif;
    }

    .reviews-link {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        align-items: center;
    }

    .reviews-link span:first-child {
        font-size: 16px;
        line-height: 1.5;
        white-space: normal;
    }

    .vk-link {
        font-size: 18px;
        line-height: 1.4;
        gap: 8px;
    }

    .vk-icon {
        width: 24px;
        height: 24px;
    }

    .reviews-grid {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 0;
    }

    .review-column {
        display: contents;
    }

    .review-item {
        width: 100%;
    }

    .review-column:first-child .review-item {
        height: auto;
    }

    .review-column:nth-child(2) .review-item:first-child {
        height: auto;
    }

    .review-column:nth-child(2) .review-item:last-child {
        height: auto;
    }

    .review-column:last-child .review-item {
        height: auto;
    }

    .review-column:first-child .review-item .review-image {
        border-radius: 7.744px;
    }

    .review-column:nth-child(2) .review-item:first-child .review-image {
        border-radius: 7.744px;
    }

    .review-column:nth-child(2) .review-item:nth-child(2) .review-image {
        border-radius: 4.424px;
    }

    .review-column:nth-child(3) .review-item .review-image {
        border-radius: 5.251px;
    }

    /* Social Section Mobile */
    .social-section {
        padding: 32px 0;
    }

    .social-section .container {
        padding: 0 23px;
    }

    .social-card {
        border-radius: 32px;
        display: flex;
        flex-direction: column;
        overflow: visible;
        padding: 24px;
        gap: 16px;
    }

    .social-content {
        padding: 0;
        max-width: 100%;
        display: contents;
    }

    .social-title {
        font-size: 30px;
        line-height: 1;
        font-family: 'Playfair Display', serif;
        margin-bottom: 0;
        order: 1;
    }

    .social-image {
        width: 100%;
        height: 156.704px;
        min-height: 156.704px;
        flex-shrink: 0;
        position: relative;
        overflow: hidden;
        order: 2;
    }

    .social-image-wrapper {
        position: absolute;
        left: 50%;
        top: -0.41px;
        transform: translateX(-50%);
        width: 323px;
        height: 229px;
        max-width: none;
    }

    .social-image-main {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .social-text {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 0;
        order: 3;
    }

    .social-text br {
        display: none;
    }

    .social-buttons {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
        order: 4;
        margin-top: 16px;
    }

    .social-btn {
        width: 100%;
        padding: 16px;
        border-radius: 16px;
        font-size: 18px;
        line-height: 1.4;
        font-weight: 400;
        gap: 10px;
    }

    .social-btn-icon {
        width: 24px;
        height: 24px;
    }

    /* Hot Tours Section Mobile */
    .hot-tours-section {
        padding: 32px 0;
    }

    .hot-tours-section .container {
        padding: 0 23px;
    }

    .hot-tours-header {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
    }

    .hot-tours-header .section-title {
        font-size: 34px;
        line-height: 1;
        font-family: 'Playfair Display', serif;
        margin-bottom: 0;
    }

    .hot-tours-subtitle {
        font-size: 16px;
        line-height: 1.5;
        margin: 0;
    }

    .hot-tours-widget {
        width: 100%;
        height: 203px;
        min-height: 203px;
        position: relative;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .hot-tours-widget::-webkit-scrollbar {
        display: none;
    }

    .hot-tours-widget iframe,
    .hot-tours-widget > div {
        width: auto;
        min-width: 100%;
        height: 203px;
        min-height: 203px;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 32px 0;
    }

    .cta-section .container {
        padding: 0 23px;
    }

    .cta-card {
        border-radius: 32px;
        display: flex;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }

    .cta-content {
        padding: 0;
        max-width: 100%;
        width: 100%;
        display: contents;
    }

    .cta-title {
        font-size: 28px;
        line-height: 1.1;
        font-family: 'Playfair Display', serif;
        margin-bottom: 16px;
        width: 100%;
        box-sizing: border-box;
        order: 1;
    }

    .cta-image {
        width: 100%;
        height: 208px;
        min-height: 208px;
        flex-shrink: 0;
        position: relative;
        order: 2;
        margin-bottom: 16px;
    }

    .cta-image-wrapper {
        width: 203.872px;
        height: 208px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .cta-image .photo-frame {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) rotate(3deg);
        width: 193.986px;
        height: 193.986px;
        /* border: 4.511px solid white; */
        /* background: white; */
        overflow: hidden;
        box-sizing: border-box;
    }

    .cta-image .photo-clip {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%) scaleY(-1);
        width: 8.562px;
        height: 18.065px;
        z-index: 1;
        filter: drop-shadow(0.451px 0.451px 0.902px rgba(0, 0, 0, 0.25));
    }

    .cta-text {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 16px;
        width: 100%;
        box-sizing: border-box;
        order: 3;
    }

    .cta-features {
        margin-bottom: 16px;
        width: 100%;
        box-sizing: border-box;
        order: 4;
    }

    .cta-features-title {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .features-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .feature-item {
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 16px;
        padding: 12px 16px;
        display: flex;
        gap: 16px;
        align-items: center;
        min-height: auto;
        width: 100%;
        box-sizing: border-box;
    }

    .feature-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .feature-item span {
        font-size: 18px;
        line-height: 1.4;
        flex: 1;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        min-width: 0;
    }

    .feature-item span br {
        display: none;
    }

    .cta-button {
        width: 100%;
        padding: 16px 14px;
        border-radius: 8px;
        font-size: 18px;
        box-sizing: border-box;
        order: 5;
        line-height: 1.4;
        text-align: center;
        background: white;
        color: #581b0d;
        margin-top: 16px;
    }

    /* How It Works Section Mobile */
    .how-it-works-section {
        padding: 32px 0;
    }

    .how-it-works-section .container {
        padding: 0 23px;
    }

    .how-it-works-section .section-title {
        font-size: 34px;
        line-height: 1;
        font-family: 'Playfair Display', serif;
        margin-bottom: 32px;
    }

    .steps-container {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 0;
        position: relative;
    }

    .steps-lines {
        display: none;
    }

    .step-line {
        display: none;
    }

    .step-line-1,
    .step-line-2,
    .step-line-3,
    .step-line-4 {
        display: none;
    }

    .steps-container::after {
        content: '';
        position: absolute;
        left: 23.5px;
        top: 50px;
        width: 2px;
        height: calc(100% - 130px);
        background-image: url("data:image/svg+xml,%3Csvg width='2' height='500' viewBox='0 0 2 500' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0 L1 500' stroke='%23BF7665' stroke-width='1' stroke-dasharray='5,3' opacity='0.3'/%3E%3C/svg%3E");
        background-repeat: repeat-y;
        background-size: contain;
    }

    .step-item {
        display: flex;
        flex-direction: row;
        gap: 16px;
        align-items: center;
        position: relative;
        flex: none;
        min-width: auto;
    }

    .step-number {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 96px;
        border: 1px solid #230b05;
        background: #fffbef;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        line-height: 1.5;
        font-family: 'Playfair', sans-serif;
        color: #230b05;
        order: 1;
        flex-shrink: 0;
    }

    .step-image {
        display: none;
    }

    .step-text {
        font-size: 18px;
        line-height: 1.4;
        font-family: 'Playfair', sans-serif;
        color: #230b05;
        margin: 0;
        order: 3;
        flex: 1;
        min-width: 0;
    }

    .step-text br {
        display: inline;
    }

    /* Add step content wrapper */
    .step-item {
        display: grid;
        grid-template-columns: 48px 1fr;
        gap: 16px;
        align-items: center;
    }

    .step-number {
        grid-column: 1;
        grid-row: 1;
    }

    .step-image {
        display: block;
        grid-column: 2;
        grid-row: 1;
        width: 90px;
        height: 64px;
        background: #fffbef;
        position: relative;
        overflow: hidden;
        border-radius: 0;
        order: 2;
    }

    .step-image-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        transform: none;
    }

    .step-text {
        grid-column: 2;
        grid-row: 2;
        margin-top: 0;
    }
}

/* Notification Styles */
.notification-container {
    position: fixed;
    top: 100px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 400px;
    pointer-events: none;
}

.notification {
    background: #f6e7da;
    border: 1px solid #d4a398;
    border-radius: 16px;
    padding: 24px 32px;
    box-shadow: 0 4px 20px rgba(35, 11, 5, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    pointer-events: auto;
    animation: slideInRight 0.3s ease-out;
    position: relative;
    min-width: 320px;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification.fade-out {
    animation: slideOutRight 0.3s ease-in forwards;
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.notification.success {
    background: #f6e7da;
    border-color: #d4a398;
}

.notification.error {
    background: #f6e7da;
    border-color: #9f3118;
    border-width: 2px;
}

.notification-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.notification-icon svg {
    width: 100%;
    height: 100%;
}

.notification-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.notification-title {
    font-family: 'Playfair', sans-serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.2;
    color: #230b05;
    margin: 0;
}

.notification-message {
    font-family: 'Playfair', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #230b05;
    margin: 0;
}

.notification-close {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.notification-close:hover {
    opacity: 1;
}

.notification-close svg {
    width: 100%;
    height: 100%;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 11, 5, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 48px;
    max-width: 600px;
    width: 100%;
    position: relative;
    margin: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.3s ease;
    padding: 0;
}

.modal-close:hover {
    background: rgba(35, 11, 5, 0.1);
}

.modal-close svg {
    width: 24px;
    height: 24px;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    color: #230b05;
    margin: 0 0 32px 0;
    padding-right: 40px;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #230b05;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(35, 11, 5, 0.3);
    border-radius: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #230b05;
    background: #ffffff;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #9f3118;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #230b05;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #9f3118;
}

.checkbox-label span {
    flex: 1;
}

.form-submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: #9f3118;
    border: none;
    border-radius: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.3s ease, opacity 0.3s ease;
    margin-top: 8px;
}

.form-submit-btn:hover {
    background: #7d2613;
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-submit-btn:disabled:hover {
    background: #9f3118;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .modal-content {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 24px 23px 32px 23px;
        border-radius: 32px 32px 0 0;
        max-height: 90vh;
        overflow-y: auto;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
    }

    .modal-title {
        font-size: 28px;
        line-height: 1.1;
        margin-bottom: 24px;
        padding-right: 36px;
    }

    .modal-close {
        top: 24px;
        right: 23px;
        width: 32px;
        height: 32px;
    }

    .modal-close svg {
        width: 20px;
        height: 20px;
    }

    .consultation-form {
        gap: 16px;
    }

    .form-group {
        gap: 8px;
    }

    .form-label {
        font-size: 16px;
        line-height: 1.5;
    }

    .form-input,
    .form-textarea {
        font-size: 16px;
        padding: 12px 16px;
        border-radius: 12px;
    }

    .form-textarea {
        min-height: 100px;
    }

    .form-submit-btn {
        font-size: 18px;
        line-height: 1.4;
        padding: 16px 32px;
        border-radius: 12px;
        width: 100%;
        margin-top: 8px;
    }

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

    /* FAQ Section Mobile */
    /* FAQ Section Mobile */
    .faq-section {
        padding: 32px 0;
    }

    .faq-section .container {
        padding: 0 23px;
    }

    .faq-section .section-title {
        font-size: 34px;
        line-height: 1;
        padding: 0;
        margin-bottom: 32px;
    }

    .faq-grid {
        gap: 8px;
        padding: 0;
    }

    .faq-card {
        width: 160px;
        min-width: 160px;
        max-width: 160px;
        flex: 0 0 160px;
        padding: 10px;
        gap: 4px;
        height: auto;
        min-height: auto;
        height: 160px;
    }

    .faq-card.opened {
        height: 300px;
        min-height: 300px;
    }

    .faq-number {
        font-size: 14px;
        font-style: italic;
        font-weight: 400;
    }

    .faq-question {
        font-size: 16px;
        font-weight: 600;
        line-height: 1.2;
    }

    .faq-answer {
        font-size: 16px;
        line-height: 1.2;
    }

    .faq-arrow {
        width: 24px;
        height: 24px;
    }

    /* Best Option Section Mobile */
    .best-option-section {
        padding: 32px 0;
    }

    .best-option-section .container {
        padding: 0 23px;
    }

    .best-option-card {
        padding: 24px;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .best-option-content {
        display: contents;
    }

    .best-option-title {
        font-size: 26px;
        line-height: 1.1;
        order: 1;
    }

    .best-option-images {
        width: 100%;
        height: 208px;
        order: 2;
        top: -65px;
        left: 42px;
    }

    .best-option-text {
        font-size: 18px;
        line-height: 1.4;
        order: 3;
    }

    .best-option-content .btn {
        width: 100%;
        padding: 16px 32px;
        font-size: 18px;
        line-height: 1.4;
        order: 4;
        margin-top: 16px;
    }

    .best-option-image-large {
        left: calc(50% + 49px);
        top: 50%;
        transform: translate(-50%, -50%) rotate(1.8deg);
    }

    .best-option-image-large .best-photo-frame {
        width: 171px;
        height: 171px;
        border: 4px solid #ffffff;
    }

    .best-option-image-large .best-photo-clip {
        top: 153px;
        left: 88px;
        width: 8px;
        height: 16px;
    }

    .best-option-image-large .clip-image {
        width: 100%;
        height: 100%;
        transform: scaleY(-1);
    }

    .best-option-image-small {
        left: calc(50% - 60px);
        top: 50%;
        transform: translate(-50%, -50%) rotate(-9deg);
    }

    .best-option-image-small .best-photo-frame {
        width: 135px;
        height: 135px;
        border: 3px solid #ffffff;
    }

    .best-option-image-small .best-photo-clip {
        top: 114px;
        left: 70px;
        width: 6px;
        height: 13px;
    }

    .best-option-image-small .clip-image {
        width: 100%;
        height: 100%;
        transform: scaleY(-1);
    }

    /* Footer Mobile */
    .footer {
        padding: 32px 0;
    }

    .footer .container {
        padding: 0 23px;
    }

    .footer-line-top {
        margin-bottom: 64px;
        overflow: visible;
    }

    .footer-line-bottom {
        margin-top: 64px;
        margin-bottom: 64px;
        overflow: visible;
    }

    .footer-line-image {
        width: 100%;
        height: auto;
        display: block;
        max-width: none;
        content: url('../img/mobile/footerlinemobile.svg');
    }

    .footer-main {
        gap: 64px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .footer-info {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .footer-name {
        flex-direction: column;
        gap: 9px;
        align-items: flex-start;
        margin-bottom: 0;
    }

    .name-bold {
        font-size: 18px;
        line-height: 1.4;
    }

    .name-phone {
        font-size: 18px;
        line-height: 1.4;
    }

    .footer-tagline {
        font-size: 28px;
        line-height: 1.1;
    }

    .footer-columns {
        flex-direction: column;
        gap: 16px;
        max-width: 100%;
    }

    .footer-column {
        min-width: 0;
    }

    .footer-column-title {
        font-size: 21px;
        line-height: 1.5;
    }

    .footer-links a {
        font-size: 21px;
        line-height: 1.5;
    }

    .footer-logo {
        height: 48px;
    }

    .footer-logo-image {
        max-width: 329px;
        height: 48px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        margin-top: 0;
    }

    .footer-copyright {
        white-space: normal;
        order: 1;
    }

    .footer-legal {
        max-width: 100%;
        order: 2;
    }

    .footer-disclaimer {
        max-width: 100%;
        order: 3;
    }
}

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #9f3118;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    display: none;
}

.cookie-notice.show {
    display: block;
    transform: translateY(0);
}

.cookie-notice-content {
    max-width: 1632px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-notice-text {
    flex: 1;
    min-width: 250px;
}

.cookie-notice-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #230b05;
}

.cookie-notice-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Playfair', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cookie-btn-accept {
    background-color: #9f3118;
    color: #fff;
}

.cookie-btn-accept:hover {
    background-color: #7d2614;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(159, 49, 24, 0.3);
}

.cookie-btn-decline {
    background-color: transparent;
    color: #9f3118;
    border: 2px solid #9f3118;
}

.cookie-btn-decline:hover {
    background-color: #9f3118;
    color: #fff;
}

/* Адаптивность для cookie notice */
@media (max-width: 768px) {
    .cookie-notice {
        padding: 16px;
    }

    .cookie-notice-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .cookie-notice-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-notice-text p {
        font-size: 13px;
    }
}
