* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* border: 1px solid red; */
}

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    min-height: 100vh;
    padding: 80px 0;
    display: flex;
    align-items: center;
    background-color: #fafafa;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 500px;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 8px;
}

.authors {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.8;
}

h1 {
    font-size: 60px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 40px;
}

.cta-button {
    background: linear-gradient(135deg, #13887a 0%, #0a5d4e 60%, #084438 100%);
    color: #f0d78c;
    border: 1px solid #0a5d4e;
    outline: none;
    padding: 16px 32px;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid #d4af525b;
    border-radius: 3px;
    pointer-events: none;
    transition: all 0.3s;
}

.cta-button:hover {
    /* background: linear-gradient(135deg, #159283 0%, #0b6e5c 60%, #084e42 100%); */
    transform: translateY(-6px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    text-shadow: 0 0 5px rgba(240, 215, 140, 0.3);
}

.cta-button:hover::before {
    border-color: #e6c15c96;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-button:active::before {
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
}

.hero-images {
    flex: 1;
    max-width: 600px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.hero-image {
    position: absolute;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.hero-image:hover {
    filter: grayscale(70%);
}

.image-1 {
    width: 60%;
    height: 70%;
    top: 0;
    left: 0;
    z-index: 2;
}

.image-2 {
    width: 60%;
    height: 70%;
    bottom: -20px;
    right: -18px;
    z-index: 2;
}

/* Адаптивность */
@media (max-width: 992px) {

    .spiritual-image {
        max-width: 30%!important;
    }

    .top-logo-wrapper {
        top: 0!important;
        padding-top: 0px!important;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        width: 100%;
        order: 2; /* Перемещаем текст после изображений */
        padding-top: 20px;
    }
    
    .hero-images {
        width: 100%;
        order: 1; /* Перемещаем изображения перед текстом */
        margin-top: 36px;
        margin-bottom: 20px;
    }
    
    .image-container {
        display: flex;
        justify-content: center;
        position: relative;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .hero-image {
        position: relative;
        max-width: 45%;
        height: auto;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .image-1 {
        transform: rotate(-3deg);
        margin-right: -23px;
        z-index: 2;
    }
    
    .image-2 {
        transform: rotate(3deg);
        margin-left: 0px;
        z-index: 1;
    }
    
    /* Изменяем стили для даты и заголовка для лучшего отображения */
    .event-date-wrapper {
        margin-bottom: 10px;
    }
    
    .event-date {
        font-size: 20px;
    }
    
    h1 {
        font-size: 36px;
        margin-top: 10px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .authors {
        font-size: 16px;
    }
}

/* Дополнительные настройки для очень маленьких экранов */
@media (max-width: 576px) {
    .hero {
        min-height: auto;
        height: 847px;
        padding: 0!important;
    }

    .section-title {
        font-size: 25px!important;
    }

    .simple-gallery-container {
        padding: 0!important;
    }

    .care-description {
        font-size: 15px!important;
    }

    .care-title {
        margin-bottom: 8px!important;
    }

    .care-contact {
        font-size: 16px!important;
    }

    .care-btn {
        font-size: 14px!important;
    }

    .event-date-wrapper {
        margin-bottom: 0px!important;
    }

    .benefits {
        padding: 0px!important;
    }

    .center-logo {
        margin-bottom: 0px!important;
    }

    .benefits-item h3 {
        margin-bottom: 0px!important;
    }

    .benefits-wrapper {
        gap: 5px!important;
    }

    .spiritual-image {
        opacity: .1;
    }

    .program-card::before {
        height: 1px!important;
    }

    .for-you-image {
        position: absolute!important;
        pointer-events: none!important;
    }

    .for-you-content {
        position: relative!important;
    }

    .spiritual-image {
        max-width: 110%!important;
    }


    .hero-image {
        max-width: 48%;
    }
    
    .image-1 {
        margin-right: -25px;
    }
    
    .image-2 {
        margin-left: -0px;
    }
    
    .image-container {
        max-width: 100%;
    }

    h1 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 36px;
    }
    
    .image-container {
        height: 350px;
    }
    
    .image-1, .image-2 {
        width: 70%;
    }
}

@media (max-width: 576px) {

    .image-1, .image-2 {
        width: 42%;
    }

    .hero-images {
        margin: 0!important;
    }

    .hero {
        padding: 40px 0;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .authors {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .image-container {
        height: 300px;
    }
}

/* Добавление новых стилей для секции "Что даст вам ретрит" */

.benefits {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fafafa, #f0f0f0);
    position: relative;
    overflow: hidden;
}

/* Декоративные элементы фона */
/* .benefits::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 93, 78, 0.05) 0%, rgba(10, 93, 78, 0) 70%);
    border-radius: 50%;
    top: -300px;
    left: -200px;
    z-index: 0;
} */
/* 
.benefits::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 176, 82, 0.05) 0%, rgba(212, 176, 82, 0) 70%);
    border-radius: 50%;
    bottom: -200px;
    right: -100px;
    z-index: 0;
} */

.section-title {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    color: #6980b5;
    margin-bottom: 80px;
    position: relative;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4b052, transparent);
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.benefits-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 40px;
    margin: 0 auto;
    max-width: 1000px;
}

.center-logo {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sacred-geometry {
    width: 150px;
    height: 150px;
    position: relative;
    margin-bottom: 20px;
}

.sacred-geometry::before, 
.sacred-geometry::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,90 10,90" stroke="%23d4b052" fill="none" stroke-width="0.5"/><polygon points="10,10 90,10 90,90 10,90" stroke="%23d4b052" fill="none" stroke-width="0.5"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    animation: rotate 20s linear infinite;
}

.sacred-geometry::after {
    animation-direction: reverse;
    animation-duration: 30s;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-text {
    font-size: 14px;
    color: #6980b5;
    letter-spacing: 2px;
    position: relative;
}

.logo-text::before,
.logo-text::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 1px;
    background-color: #d4b052;
    top: 50%;
}

.logo-text::before {
    left: -30px;
}

.logo-text::after {
    right: -30px;
}

.benefits-item {
    position: relative;
    padding: 20px;
    transition: all 0.3s ease;
    z-index: 2;
}

.benefits-item:hover {
    transform: translateY(-5px);
}

.benefit-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 40px;
    color: rgba(212, 176, 82, 0.2);
    font-weight: 200;
    line-height: 1;
}

.benefits-item h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    padding-left: 30px;
    color: #333;
}

.benefits-item p {
    font-size: 15px;
    padding-left: 30px;
    color: #666;
}

.highlight {
    color: #0a5d4e;
    font-weight: 500;
}

/* Позиционирование элементов */
.item-1 {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    align-self: center;
}

.item-2 {
    grid-column: 2;
    grid-row: 1;
}

.item-3 {
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
    align-self: center;
}

.item-4 {
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
    align-self: center;
}

.item-5 {
    grid-column: 3;
    grid-row: 2;
    justify-self: start;
    align-self: center;
}

.item-6 {
    grid-column: 1;
    grid-row: 3;
    justify-self: end;
    align-self: center;
}

.item-7 {
    grid-column: 2;
    grid-row: 3;
}

.item-8 {
    grid-column: 3;
    grid-row: 3;
    justify-self: start;
    align-self: center;
}

/* Соединительные линии (визуальный эффект) */
.benefits-wrapper::before {
    content: '';
    position: absolute;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border: 1px dashed rgba(212, 176, 82, 0.2);
    border-radius: 50%;
    z-index: 1;
}

/* Адаптивность для секции benefits */
@media (max-width: 992px) {
    .benefits-wrapper {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 30px;
    }
    
    .center-logo {
        grid-column: 1 / span 2;
        grid-row: 1;
        margin-bottom: 40px;
    }
    
    .item-1, .item-3, .item-5, .item-7 {
        grid-column: 1;
        justify-self: start;
    }
    
    .item-2, .item-4, .item-6, .item-8 {
        grid-column: 2;
        justify-self: start;
    }
    
    .item-1, .item-2 { grid-row: 2; }
    .item-3, .item-4 { grid-row: 3; }
    .item-5, .item-6 { grid-row: 4; }
    .item-7, .item-8 { grid-row: 5; }
    
    .benefits-wrapper::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
        margin-bottom: 60px;
    }
    
    .benefits {
        padding: 70px 0;
    }
}

@media (max-width: 576px) {
    .benefits-wrapper {
        grid-template-columns: 1fr;
    }
    
    .center-logo {
        grid-column: 1;
    }
    
    .item-1, .item-2, .item-3, .item-4,
    .item-5, .item-6, .item-7, .item-8 {
        grid-column: 1;
    }
    
    .item-1 { grid-row: 2; }
    .item-2 { grid-row: 3; }
    .item-3 { grid-row: 4; }
    .item-4 { grid-row: 5; }
    .item-5 { grid-row: 6; }
    .item-6 { grid-row: 7; }
    .item-7 { grid-row: 8; }
    .item-8 { grid-row: 9; }
    
    .section-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .benefit-number {
        font-size: 32px;
    }
    
    .benefits-item h3 {
        font-size: 16px;
    }
    
    .benefits-item p {
        font-size: 14px;
    }
}

/* Стили для секции "Ретрит для вас, если вы..." */
.for-you {
    padding: 100px 0;
    background: linear-gradient(to right, #f9f9f9, #f0ebe6);
    position: relative;
    overflow: hidden;
}

/* Декоративные элементы фона */
/* .for-you::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 176, 82, 0.03) 0%, rgba(212, 176, 82, 0) 70%);
    border-radius: 50%;
    top: -400px;
    right: -300px;
    z-index: 0;
} */

.for-you::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(10, 93, 78, 0.03) 0%, rgba(10, 93, 78, 0) 70%);
    border-radius: 50%;
    bottom: -250px;
    left: -200px;
    z-index: 0;
}

.for-you-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.for-you-list {
    flex: 3;
    max-width: 650px;
}

.list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 22px;
    position: relative;
    padding-left: 5px;
    transition: transform 0.3s ease;
}

.list-item:hover {
    transform: translateX(5px);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4b052, #e6c15c);
    margin-top: 8px;
    margin-right: 15px;
    flex-shrink: 0;
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(212, 176, 82, 0.3);
    top: -5px;
    left: -5px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.list-item:hover .dot::before {
    opacity: 1;
}

.list-item p {
    font-size: 17px;
    color: #444;
    line-height: 1.5;
}

.for-you-image {
    flex: 2;
    height: 600px;
    position: relative;
}

.energy-figure {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?q=80&w=720&auto=format');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    filter: grayscale(30%) brightness(1.05);
    border-radius: 5px;
    overflow: hidden;
}

.energy-figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.1), rgba(10, 93, 78, 0.15), rgba(212, 176, 82, 0.1));
    mix-blend-mode: overlay;
}

.energy-figure::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 60%);
    opacity: 0.1;
    mix-blend-mode: screen;
    animation: energy-pulse 15s ease-in-out infinite alternate;
}

@keyframes energy-pulse {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.15;
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 0.1;
    }
}

/* Адаптивность для секции for-you */
@media (max-width: 992px) {
    .for-you-content {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .for-you-list, .for-you-image {
        max-width: 100%;
        width: 100%;
    }
    
    .for-you-image {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .for-you {
        padding: 70px 0;
    }
    
    .list-item p {
        font-size: 16px;
    }
    
    .for-you-image {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .for-you {
        padding: 50px 0;
    }
    
    .list-item {
        margin-bottom: 16px;
    }
    
    .list-item p {
        font-size: 15px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
        margin-top: 8px;
    }
    
    .for-you-image {
        height: 350px;
    }
}

/* Стили для секции "Программа ретрита" */
.program {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f0f0f0, #fafafa);
    position: relative;
    overflow: hidden;
}

/* Декоративные элементы фона */
/* .program::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(10, 93, 78, 0.03) 0%, rgba(10, 93, 78, 0) 70%);
    border-radius: 50%;
    top: -350px;
    right: -200px;
    z-index: 0;
} */

/* .program::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 176, 82, 0.03) 0%, rgba(212, 176, 82, 0) 70%);
    border-radius: 50%;
    bottom: -300px;
    left: -150px;
    z-index: 0;
} */

.program-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.program-card {
    width: calc(33.333% - 30px);
    max-width: 380px;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

@media (max-width: 992px) {
    .program-card {
        width: calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .program-card {
        width: 100%;
    }
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #13887a, #d4b052);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.program-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(10, 93, 78, 0.03), transparent);
    transition: all 0.3s ease;
    z-index: -1;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.program-card:hover::before {
    opacity: 1;
    height: 5px;
}

.program-card:hover::after {
    height: 100%;
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(19, 136, 122, 0.1), rgba(212, 176, 82, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.card-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px dashed rgba(212, 176, 82, 0.3);
    animation: rotate 20s linear infinite;
}

.icon-svg {
    width: 40px;
    height: 40px;
    fill: #0a5d4e;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.program-card:hover .icon-svg {
    fill: #d4b052;
    transform: scale(1.1);
}

.card-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #333;
    transition: color 0.3s ease;
}

.program-card:hover .card-title {
    color: #0a5d4e;
}

.card-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Адаптивность */
@media (max-width: 992px) {
    .program {
        padding: 80px 0;
    }
    
    .program-cards {
        gap: 20px;
    }
    
    .program-card {
        padding: 30px 20px;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
    }
    
    .icon-svg {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 768px) {
    .program {
        padding: 60px 0;
    }
    
    .program-card {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .program {
        padding: 40px 0;
    }
    
    .program-card {
        padding: 25px 15px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .icon-svg {
        width: 30px;
        height: 30px;
    }
    
    .card-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .card-description {
        font-size: 14px;
    }
}

/* Стили для секции с ключевым посланием */
.key-message {
    padding: 100px 0;
    background: linear-gradient(to right, #f0e8d9, #f7f3ea);
    position: relative;
    overflow: hidden;
}

.message-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.message-text {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 50px;
    color: #444;
    position: relative;
}

.highlight-text {
    color: #0a5d4e;
    font-weight: 400;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4b052, transparent);
}

.message-button-container {
    display: flex;
    justify-content: center;
}

.message-button {
    min-width: 200px;
}

/* Стили для фоновых орнаментов - делаем их более утонченными */
.bg-ornament {
    position: absolute;
    opacity: 0.08; /* Уменьшаем непрозрачность для более нежного эффекта */
    pointer-events: none;
    filter: blur(3px); /* Добавляем легкое размытие для мягкости */
}

.ornament-1 {
    width: 350px; /* Немного уменьшаем размер */
    height: 350px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23f8e7b9" d="M50,5c-0.3,0-0.6,0.1-0.8,0.4L45,10.6c-0.4,0.4-0.5,1.1-0.1,1.6c5.4,6.8,5.4,16.5,0,23.3c-0.4,0.5-0.3,1.2,0.1,1.6l4.2,5.2c0.2,0.3,0.5,0.4,0.8,0.4c0.3,0,0.6-0.1,0.8-0.4l4.2-5.2c0.4-0.4,0.5-1.1,0.1-1.6c-5.4-6.8-5.4-16.5,0-23.3c0.4-0.5,0.3-1.2-0.1-1.6L50.8,5.4C50.6,5.1,50.3,5,50,5z M50,42.7c-0.3,0-0.6,0.1-0.8,0.4L45,48.3c-0.4,0.4-0.5,1.1-0.1,1.6c5.4,6.8,5.4,16.5,0,23.3c-0.4,0.5-0.3,1.2,0.1,1.6l4.2,5.2c0.2,0.3,0.5,0.4,0.8,0.4c0.3,0,0.6-0.1,0.8-0.4l4.2-5.2c0.4-0.4,0.5-1.1,0.1-1.6c-5.4-6.8-5.4-16.5,0-23.3c0.4-0.5,0.3-1.2-0.1-1.6l-4.2-5.2C50.6,42.8,50.3,42.7,50,42.7z M15.4,26.9c-0.2,0-0.4,0.1-0.6,0.2l-9.6,9.6c-0.3,0.3-0.3,0.8,0,1.1l9.6,9.6c0.3,0.3,0.8,0.3,1.1,0l9.6-9.6c0.3-0.3,0.3-0.8,0-1.1l-9.6-9.6C15.8,27,15.6,26.9,15.4,26.9z M84.6,26.9c-0.2,0-0.4,0.1-0.6,0.2l-9.6,9.6c-0.3,0.3-0.3,0.8,0,1.1l9.6,9.6c0.3,0.3,0.8,0.3,1.1,0l9.6-9.6c0.3-0.3,0.3-0.8,0-1.1l-9.6-9.6C85,27,84.8,26.9,84.6,26.9z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    right: -80px;
    top: -80px;
    animation: float-gentle 20s infinite alternate ease-in-out;
}

.ornament-2 {
    width: 300px; /* Немного уменьшаем размер */
    height: 300px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23a0d6c8" d="M50,2.5c-26.2,0-47.5,21.3-47.5,47.5S23.8,97.5,50,97.5S97.5,76.2,97.5,50S76.2,2.5,50,2.5z M50,92.5C26.6,92.5,7.5,73.4,7.5,50S26.6,7.5,50,7.5S92.5,26.6,92.5,50S73.4,92.5,50,92.5z M50,12.5c-20.7,0-37.5,16.8-37.5,37.5S29.3,87.5,50,87.5S87.5,70.7,87.5,50S70.7,12.5,50,12.5z M50,82.5c-17.9,0-32.5-14.6-32.5-32.5S32.1,17.5,50,17.5S82.5,32.1,82.5,50S67.9,82.5,50,82.5z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    left: -40px;
    bottom: -80px;
    animation: float-gentle 15s infinite alternate-reverse ease-in-out;
}

@keyframes float-gentle {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(15px) rotate(5deg);
    }
}

/* Адаптивность */
@media (max-width: 992px) {
    .key-message {
        padding: 80px 0;
    }
    
    .message-text {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .key-message {
        padding: 60px 0;
    }
    
    .message-text {
        font-size: 20px;
        margin-bottom: 40px;
    }
    
    .ornament-1 {
        width: 300px;
        height: 300px;
        right: -50px;
        top: -50px;
    }
    
    .ornament-2 {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 576px) {
    .key-message {
        padding: 50px 0;
    }
    
    .message-text {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .ornament-1, .ornament-2 {
        opacity: 0.1;
    }
}

/* Обновленные стили для секции "Какие практики будут" - вертикальный дизайн */
.practices {
    padding: 100px 0;
    background: linear-gradient(to top, #f9f9f9, #f0f0f0);
    position: relative;
    overflow: hidden;
}

.practices::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%23d4b05210" d="M30,10 Q50,20 70,10 T100,20 V100 H0 V20 Q10,30 30,10z"/></svg>');
    background-size: 1000px;
    opacity: 0.03;
    pointer-events: none;
}

/* Переработка на вертикальный список */
.practices-grid {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.practice-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 35px 40px;
    box-shadow: 0 8px 25px rgba(212, 176, 82, 0.07);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(212, 176, 82, 0.05);
}

.practice-card:last-child {
    margin-bottom: 0;
}

/* Добавление декоративного элемента для соединения карточек */
.practice-card:not(:last-child)::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(212, 176, 82, 0.3), transparent);
    z-index: 2;
}

.practice-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 35px rgba(212, 176, 82, 0.12);
    border-color: rgba(212, 176, 82, 0.15);
}

.practice-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    margin-right: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 60%, rgba(212, 176, 82, 0.1) 100%);
    position: relative;
    box-shadow: 0 5px 15px rgba(10, 93, 78, 0.05);
}

.practice-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px dashed rgba(10, 93, 78, 0.2);
    animation: rotate 30s linear infinite;
}

.practice-icon::before {
    content: '';
    position: absolute;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border-radius: 50%;
    border: 1px solid rgba(212, 176, 82, 0.1);
    animation: pulse 3s infinite alternate ease-in-out;
}

.practice-svg {
    width: 28px;
    height: 28px;
    fill: #0a5d4e;
    opacity: 0.7;
    transition: all 0.5s ease;
    filter: drop-shadow(0 2px 3px rgba(10, 93, 78, 0.1));
}

.practice-card:hover .practice-svg {
    fill: #d4b052;
    transform: scale(1.1) rotate(5deg);
}

.practice-content {
    flex-grow: 1;
}

.practice-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #0a5d4e;
    transition: color 0.4s ease;
    position: relative;
}

.practice-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 1px;
    background: linear-gradient(to right, #d4b052, transparent);
    opacity: 0.6;
    transition: width 0.4s ease;
}

.practice-card:hover .practice-title::after {
    width: 60px;
}

.practice-description {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Фоновый бордюр справа */
.practice-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 0%;
    background: linear-gradient(to bottom, #d4b052, #0a5d4e);
    opacity: 0;
    transition: all 0.5s ease;
}

.practice-card:hover::after {
    opacity: 0.3;
    height: 100%;
}

/* Добавление индикатора номера для каждой практики */
.practice-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    font-weight: 200;
    color: rgba(212, 176, 82, 0.08);
    line-height: 1;
    transition: all 0.3s ease;
}

.practice-card:hover .practice-number {
    color: rgba(212, 176, 82, 0.15);
    transform: scale(1.1);
}

/* Декоративные элементы фона */
.bg-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.025;
    transition: all 10s ease;
}

.circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #d4b052 0%, transparent 70%);
    bottom: -200px;
    right: -150px;
    animation: float 15s infinite alternate ease-in-out;
}

/* .circle-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #0a5d4e 0%, transparent 70%);
    top: -250px;
    left: -150px;
    animation: float 20s infinite alternate-reverse ease-in-out;
} */

.circle-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #e6cda5 0%, transparent 70%);
    top: 40%;
    right: 25%;
    animation: float 12s infinite alternate ease-in-out;
}

/* Анимации */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Адаптивные стили */
@media (max-width: 992px) {
    .practices {
        padding: 80px 0;
    }
    
    .practice-card {
        padding: 30px;
    }
    
    .practice-icon {
        margin-right: 25px;
    }
}

@media (max-width: 768px) {
    .practices {
        padding: 60px 0;
    }
    
    .practice-card {
        padding: 25px;
    }
    
    .practice-icon {
        width: 60px;
        height: 60px;
        margin-right: 20px;
    }
    
    .practice-svg {
        width: 25px;
        height: 25px;
    }
    
    .practice-title {
        font-size: 18px;
    }
    
    .practice-number {
        display: none;
    }
}

@media (max-width: 576px) {
    .practices {
        padding: 50px 0;
    }
    
    .practice-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px 20px;
    }
    
    .practice-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .practice-content {
        width: 100%;
    }
    
    .practice-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .practice-title {
        text-align: center;
        width: 100%;
    }
    
    .practice-description {
        font-size: 14px;
        text-align: center;
    }
}

/* Обновленные стили для секции "Место проведения" с каруселью */
.venue {
    /* padding: 100px 0 0 0; */
    background: linear-gradient(to bottom, #f9f9f9, #f0f0f0);
    position: relative;
    overflow: hidden;
}

.venue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><circle cx="5" cy="5" r="0.5" fill="%23d4b05210"/><circle cx="15" cy="5" r="0.5" fill="%23d4b05210"/><circle cx="25" cy="5" r="0.5" fill="%23d4b05210"/><circle cx="5" cy="15" r="0.5" fill="%23d4b05210"/><circle cx="15" cy="15" r="0.5" fill="%23d4b05210"/><circle cx="25" cy="15" r="0.5" fill="%23d4b05210"/><circle cx="5" cy="25" r="0.5" fill="%23d4b05210"/><circle cx="15" cy="25" r="0.5" fill="%23d4b05210"/><circle cx="25" cy="25" r="0.5" fill="%23d4b05210"/></svg>');
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

.venue-info {
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.venue-name {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
    text-align: center;
}

.venue-name span {
    display: block;
    color: #0a5d4e;
    font-weight: 400;
}

.venue-location {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
    position: relative;
    text-align: center;
}

.venue-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.venue-features i {
    color: #005C4F;
}

.venue-features li {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 250px;
    max-width: calc(50% - 20px);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 176, 82, 0.1);
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.venue-features li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(212, 176, 82, 0.2);
}

.feature-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    fill: #0a5d4e;
    flex-shrink: 0;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.venue-features li:hover .feature-icon {
    fill: #d4b052;
    transform: scale(1.1);
}

.venue-features span {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

/* Стили GLightbox */
.gslide-description {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
}

.gdesc-inner {
    padding: 30px !important;
}

.gslide-title {
    font-family: 'Raleway', sans-serif !important;
    font-weight: 400 !important;
    color: #0a5d4e !important;
    margin-bottom: 10px !important;
}

.gslide-desc {
    font-family: 'Raleway', sans-serif !important;
    color: #666 !important;
}

.glightbox-clean .gslide-media {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15) !important;
}

.glightbox-clean .gclose {
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    color: #0a5d4e !important;
    top: 15px !important;
    right: 15px !important;
    opacity: 0.8 !important;
    transition: all 0.3s ease;
}

.glightbox-clean .gclose:hover {
    background: #fff !important;
    opacity: 1 !important;
}

/* Анимация для элементов */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.venue-features li:nth-child(1) { animation-delay: 0.2s; }
.venue-features li:nth-child(2) { animation-delay: 0.3s; }
.venue-features li:nth-child(3) { animation-delay: 0.4s; }
.venue-features li:nth-child(4) { animation-delay: 0.5s; }
.venue-features li:nth-child(5) { animation-delay: 0.6s; }

/* Адаптивность */
@media (max-width: 992px) {
    .venue {
        padding: 80px 0 0;
    }
    
    .venue-name {
        font-size: 24px;
    }
    
    .venue-features li {
        max-width: 100%;
    }
    
    .venue-gallery {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .venue-location {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .venue-gallery {
        height: 280px;
    }
    
    .swiper-button-next, 
    .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 576px) {
    .venue {
        padding: 60px 0 0;
    }
    
    .venue-name {
        font-size: 22px;
    }
    
    .venue-features {
        flex-direction: column;
    }
    
    .venue-features li {
        min-width: 0;
        padding: 12px 15px;
    }
    
    .venue-gallery {
        height: 200px;
    }
}

/* Стиль для анимации подсказки нажатия */
.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    border-radius: 8px;
}

.gallery-image.pulse-hint:not(.interacted) {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 176, 82, 0.4);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(212, 176, 82, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 176, 82, 0);
    }
}

/* Стили для Slick Slider */
.venue-gallery-container {
    width: 100%;
    padding: 50px 0;
    background: #f0f0f0;
}

.slick-venue-gallery {
    width: 100%;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    height: 380px;
    margin: 0 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Стили для стрелок Slick */
.slick-prev, 
.slick-next {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
}

.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}

.slick-prev:before, 
.slick-next:before {
    font-size: 20px;
    color: #0a5d4e;
    opacity: 1;
}

.slick-prev:hover, 
.slick-next:hover {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Стили для точек пагинации Slick */
.slick-dots {
    bottom: -30px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #d4b052;
    opacity: 0.4;
}

.slick-dots li.slick-active button:before {
    color: #d4b052;
    opacity: 1;
}

/* Адаптивность для слайдера */
@media (max-width: 992px) {
    .gallery-item {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .gallery-item {
        height: 260px;
    }
}

@media (max-width: 576px) {
    .gallery-item {
        height: 200px;
    }
    
    .slick-prev, 
    .slick-next {
        width: 30px;
        height: 30px;
    }
    
    .slick-prev:before, 
    .slick-next:before {
        font-size: 16px;
    }
}

/* Стили для галереи с GLightbox */
.simple-gallery-container {
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.simple-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.simple-gallery a {
    display: block;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.simple-gallery a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.simple-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.simple-gallery a:hover img {
    transform: scale(1.1);
}

/* Адаптивность для галереи */
@media (max-width: 768px) {
    .simple-gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .simple-gallery a {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .simple-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .simple-gallery a {
        height: 130px;
    }
}

/* Стили для блока проживания и питания */
.accommodation {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(to right, #f9f9f9, #f3f3f3);
}

.accommodation .top-logo-wrapper {
    width: 90px;
}

.accommodation .section-title {
    margin-top: 60px;
}

.accommodation-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 50px;
    align-items: center;
}

.accommodation-info {
    flex: 1;
    min-width: 300px;
}

.accommodation-description {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.accommodation-options {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.accommodation-options li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

/* Добавляем красивые кастомные маркеры вместо стандартных */
.accommodation-options li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #d4b052;
    border-radius: 50%;
}

.accommodation-note {
    font-size: 16px;
    font-style: italic;
    color: #666;
    margin-bottom: 25px;
}

.accommodation-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.accommodation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.accommodation-image:hover img {
    transform: scale(1.05);
}

.book-btn {
    padding: 14px 30px;
    background-color: #0a5d4e;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(10, 93, 78, 0.3);
}

.book-btn:hover {
    background-color: #084b3f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(10, 93, 78, 0.4);
}

/* Стили для блока регистрации и оплаты */
.registration {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f5f4, #e8f0ed);
    position: relative;
}

.registration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><circle cx="10" cy="10" r="0.5" fill="%230a5d4e10"/><circle cx="30" cy="10" r="0.5" fill="%230a5d4e10"/><circle cx="10" cy="30" r="0.5" fill="%230a5d4e10"/><circle cx="30" cy="30" r="0.5" fill="%230a5d4e10"/></svg>');
    opacity: 0.7;
    z-index: 1;
}

.registration-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.registration-form-container {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.registration-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #0a5d4e;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: #0a5d4e;
    box-shadow: 0 0 0 3px rgba(10, 93, 78, 0.1);
    outline: none;
}

.payment-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.payment-btn {
    flex: 1;
    min-width: 140px;
    padding: 14px 20px;
    background-color: #0a5d4e;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.payment-btn:hover {
    background-color: #084b3f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(10, 93, 78, 0.2);
}

.agreement-checks {
    margin-top: 20px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.check-item input[type="checkbox"] {
    margin-top: 4px;
    margin-right: 10px;
}

.check-item label {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.agreement-link {
    color: #0a5d4e;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.agreement-link:hover {
    color: #d4b052;
}

.payment-info {
    flex: 1;
    min-width: 300px;
}

.payment-info-card {
    background: linear-gradient(45deg, #0a5d4e, #0c7b68);
    border-radius: 20px;
    padding: 40px;
    color: white;
    box-shadow: 0 15px 40px rgba(10, 93, 78, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.payment-info-title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.payment-info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: #d4b052;
}

.payment-info-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}

.accent-text {
    font-weight: 600;
    font-size: 18px;
    opacity: 1;
    color: #f5d769;
}

/* Стили для блока службы заботы */
.customer-care {
    padding: 80px 0;
    background: #fff;
}

.care-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.care-info {
    flex: 1;
    min-width: 300px;
}

.care-title {
    font-size: 36px;
    font-weight: 300;
    color: #0a5d4e;
    margin-bottom: 20px;
}

.care-description {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.care-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background-color: #f0f0f0;
    color: #0a5d4e;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.care-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.care-decoration {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 20px 20px 100px 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.care-decoration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.care-decoration::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 93, 78, 0.2), transparent);
}

/* Адаптивность */
@media (max-width: 992px) {
    .accommodation, 
    .registration, 
    .customer-care {
        padding: 80px 0;
    }
    
    .accommodation-image, 
    .care-decoration {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .accommodation, 
    .registration, 
    .customer-care {
        padding: 60px 0;
    }
    
    .accommodation-image, 
    .care-decoration {
        height: 300px;
    }
    
    .care-title {
        font-size: 30px;
    }
    
    .payment-buttons {
        flex-direction: column;
    }
    
    .care-decoration {
        border-radius: 20px 20px 70px 20px;
    }
}

@media (max-width: 576px) {
    .accommodation, 
    .registration, 
    .customer-care {
        padding: 50px 0;
    }
    
    .accommodation-image, 
    .care-decoration {
        height: 250px;
    }
    
    .care-title {
        font-size: 26px;
    }
    
    .registration-form-container {
        padding: 30px 20px;
    }
    
    .care-decoration {
        border-radius: 20px 20px 50px 20px;
    }
}

/* Стили для обертки логотипа в самом верху */
.top-logo-wrapper {
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    position: absolute;
    /* background: linear-gradient(135deg, #f9f4ea, #fff); */
    padding-top: 30px;
    padding-bottom: 20px;
}

/* Добавляем декоративные элементы, как в hero секции */
/* .top-logo-wrapper::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(10, 93, 78, 0.05) 0%, rgba(10, 93, 78, 0) 70%);
    border-radius: 50%;
    top: -200px;
    left: -200px;
    z-index: 0;
} */
/* 
.top-logo-wrapper::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 176, 82, 0.05) 0%, rgba(212, 176, 82, 0) 70%);
    border-radius: 50%;
    top: -100px;
    right: -150px;
    z-index: 0;
} */

/* Обновляем стили для логотипа в самом верху */
.top-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Специфичные стили для логотипа, который находится в самом верху */
.top-logo svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 5px rgba(212, 176, 82, 0.5));
    animation: rotateSlow 60s linear infinite;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Дополнительный эффект при наведении на логотип */
.flower-of-life-logo:hover svg {
    filter: drop-shadow(0 0 10px rgba(212, 176, 82, 0.8));
} 

/* Стили для духовного изображения в секции "Ретрит для вас если вы" */
.for-you-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spiritual-image {
    max-width: 86%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spiritual-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.184);
}

/* Добавляем легкий эффект свечения при наведении */
/* .for-you-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 233, 233, 0.3) 0%, rgba(255, 233, 233, 0) 70%);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
} */

.for-you-image:hover::after {
    opacity: .3;
}

/* Добавляем стили для лайтбокса GLightbox */
.glightbox-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999 !important;
    overflow: hidden;
    touch-action: none;
    -webkit-text-size-adjust: 100%;
    -webkit-backface-visibility: hidden;
    outline: none;
    overflow: hidden;
}

.glightbox-container .gclose,
.glightbox-container .gnext,
.glightbox-container .gprev {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    position: absolute;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.glightbox-container .gclose svg,
.glightbox-container .gnext svg,
.glightbox-container .gprev svg {
    width: 20px;
    height: 20px;
    color: white;
    fill: white;
}

.glightbox-container .gclose {
    top: 15px;
    right: 15px;
    opacity: 0.7;
}

.glightbox-container .gnext {
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.glightbox-container .gprev {
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.glightbox-container .gnext:hover,
.glightbox-container .gprev:hover,
.glightbox-container .gclose:hover {
    opacity: 1;
}

/* Добавляем плавную прокрутку для всей страницы */
html {
    scroll-behavior: smooth;
}

.care-contact {
    font-size: 18px;
    color: #0a5d4e;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    letter-spacing: 0.5px;
}

/* Стили для блока информации о мастерах */
.masters-info {
    background-color: rgba(10, 93, 78, 0.05);
    border-left: 3px solid #0a5d4e;
    padding: 5px 20px;
    border-radius: 0 5px 5px 0;
    margin-bottom: 30px;
}

.masters-info-title {
    font-size: 18px;
    color: #0a5d4e;
    margin-bottom: 10px;
    font-weight: 600;
}

.masters-info-text {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.2;
}

.masters-schedule {
    list-style: none;
    padding-left: 0;
}

.masters-schedule li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.2;
    color: #444;
}

.master-day {
    font-weight: 600;
    color: #0a5d4e;
}

.master-name {
    font-weight: 600;
    color: #d4b052;
}

/* Стили для отображения даты проведения ретрита */
.event-date-wrapper {
    margin-bottom: 15px;
    display: inline-block;
}

.event-date {
    font-size: 22px;
    color: #0a5d4e;
    font-weight: 600;
    position: relative;
    /* padding: 6px 20px; */
    display: inline-block;
    border-radius: 30px;
    /* background: rgba(212, 176, 82, 0.08); */
    /* border: 1px solid rgba(212, 176, 82, 0.3); */
    /* box-shadow: 0 3px 10px rgba(212, 176, 82, 0.1); */
    letter-spacing: 1px;
}

/* .event-date::before, 
.event-date::after {
    content: '•';
    margin: 0 8px;
    color: rgba(212, 176, 82, 0.7);
    font-size: 16px;
    position: relative;
    top: -2px;
} */

/* Адаптивность для мобильных устройств */
@media (max-width: 576px) {
    .event-date {
        font-size: 18px;
        padding: 4px 15px;
    }
}

/* Глобальные медиа-запросы для самых маленьких экранов */
@media (max-width: 420px) {
    /* Корректировка контейнера */
    .container {
        padding: 0 15px;
    }
    
    /* Коррекция размеров для hero секции */
    .hero {
        padding: 60px 0 40px;
    }
    
    h1 {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .authors {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .event-date {
        font-size: 18px;
    }
    
    .hero-images {
        margin-top: 20px;
        margin-bottom: 15px;
    }
    
    .image-container {
        max-width: 100%;
    }
    
    .image-1 {
        margin-right: -15px;
    }
    
    .image-2 {
        margin-left: -15px;
    }
    
    /* Кнопки */
    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    /* Секция программы */
    .program {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .program-card {
        padding: 25px 20px;
    }
    
    .card-title {
        font-size: 18px;
    }
    
    .card-description {
        font-size: 14px;
    }
    
    /* Секция для кого */
    .for-you-title {
        font-size: 22px;
    }
    
    .for-you-list li {
        font-size: 14px;
        padding-left: 25px;
        margin-bottom: 12px;
    }
    
    .for-you-list li::before {
        width: 8px;
        height: 8px;
    }
    
    /* Секция с местом проведения */
    .place-description, 
    .accommodation-description {
        font-size: 14px;
    }
    
    .simple-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    /* Секция проживания */
    .accommodation-options li {
        font-size: 14px;
        padding-left: 20px;
    }
    
    .accommodation-options li::before {
        width: 6px;
        height: 6px;
    }
    
    /* Форма регистрации */
    .registration-form-container {
        padding: 20px 15px;
    }
    
    .registration-subtitle {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .payment-buttons .btn {
        padding: 12px 15px;
        font-size: 14px;
        margin: 5px 0;
    }
    
    /* Блок с мастерами */
    .masters-info {
        padding: 10px 15px;
    }
    
    .masters-info-title {
        font-size: 16px;
    }
    
    .masters-info-text {
        font-size: 12px;
    }
    
    .masters-schedule li {
        font-size: 13px;
    }
    
    /* Служба заботы */
    .care-title {
        font-size: 22px;
    }
    
    .care-description {
        font-size: 14px;
    }
    
    .care-contact {
        font-size: 16px;
    }
    
    .care-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .care-btn svg {
        width: 20px;
        height: 20px;
    }
    
    /* Подвал */
    .footer {
        padding: 25px 0;
    }
    
    .footer-text {
        font-size: 12px;
    }
}

/* Исправления для самых маленьких экранов */
@media (max-width: 359px) {
    h1 {
        font-size: 24px;
    }
    
    .hero-image {
        max-width: 47%;
    }
    
    .image-1 {
        margin-right: -10px;
    }
    
    .image-2 {
        margin-left: -10px;
    }
    
    .payment-buttons .btn {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .registration-subtitle {
        font-size: 18px;
    }
    
    .simple-gallery {
        grid-template-columns: 1fr;
    }
    
    .simple-gallery a {
        text-align: center;
    }
    
    .simple-gallery img {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .center-logo .sacred-geometry {
        width: 90px;
        height: 90px;
    }
    
    .logo-text {
        font-size: 16px;
    }
}



.masters-info-highlight {
    margin-bottom: 10px;
}

/* Стили для разделения практик по мастерам */
.master-practices-heading {
    display: flex;
    align-items: center;
    margin: 40px 0 30px;
    padding: 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(10, 93, 78, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
}

.victoria-practices .practice-card {
    border-left: 3px solid rgba(10, 93, 78, 0.15);
}

.lilia-practices .practice-card {
    border-left: 3px solid rgba(212, 176, 82, 0.15);
}

.master-practices-heading.victoria {
    background: linear-gradient(135deg, rgba(10, 93, 78, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
}

.master-practices-heading.lilia {
    background: linear-gradient(135deg, rgba(212, 176, 82, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
}

.master-image {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 20px;
    border: 2px solid rgba(212, 176, 82, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.master-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.master-info {
    flex-grow: 1;
}

.master-name {
    font-size: 24px;
    font-weight: 400;
    color: #0a5d4e;
    margin-bottom: 5px;
}

.master-description {
    font-size: 16px;
    color: #666;
}

.practices-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 176, 82, 0.3), transparent);
}

.divider-icon {
    width: 50px;
    height: 50px;
    margin: 0 20px;
    opacity: 0.6;
}

/* Модификации для мобильных устройств */
@media (max-width: 768px) {
    .master-practices-heading {
        flex-direction: column;
        text-align: center;
    }
    
    .master-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .master-name {
        font-size: 20px;
    }
    
    .practices-divider {
        margin: 30px 0;
    }
    
    .divider-icon {
        width: 40px;
        height: 40px;
        margin: 0 15px;
    }
}