section:nth-child(odd) {
    background-color: var(--section-bg1);
}

section:nth-child(even) {
    background-color: var(--section-bg2);
}

section .container {
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    color: var(--primary);
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: var(--secondary);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-bottom: 4px solid var(--accent);
}

.feature-icon {
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
}

.feature-content {
    padding: 25px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.spaces {
    margin-top: 40px;
}

.space {
    margin-bottom: 80px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.space-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    color: var(--primary);
    padding-bottom: 10px;
    border-bottom: 2px dashed var(--accent);
}

.space-title i {
    margin-right: 15px;
    color: var(--accent);
    font-size: 32px;
}

.slider-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    height: 500px;
    border: 5px solid white;
    transition: all 0.3s ease;
}

.slider-container:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    object-fit: cover;
    object-position: center;
}

.slide.active {
    opacity: 1;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: white;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.7);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background-color 0.3s ease;
}

.slider-btn:hover {
    background-color: white;
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.space-description {
    font-size: 17px;
    color: var(--secondary);
    margin-bottom: 25px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
    width: 100%;
}

.amenity-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.amenity-item:hover {
    background-color: rgba(66, 117, 106, 0.1);
    transform: translateX(2px);
}

.amenity-item i {
    margin-right: 15px;
    color: var(--accent);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.amenity-item:hover i {
    transform: translateX(-2px);
    opacity: 0.9;
}

.location {
    padding: 80px 0;
    background-color: var(--light);
}

.map-container {
    height: 400px;
    background-color: #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.location-info {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.info-section {
    margin-bottom: 25px;
}

.info-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: var(--primary);
    padding: 10px 15px;
    background-color: rgba(248, 183, 93, 0.15);
    border-radius: 8px;
}

.info-section h3 i {
    margin-right: 15px;
    color: var(--accent);
    font-size: 22px;
}

.info-section p, .info-section li {
    color: var(--secondary);
    margin-bottom: 10px;
}

.info-section ul {
    list-style-type: none;
}

.info-section ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.info-section ul li i {
    margin-right: 10px;
    color: var(--accent);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.info-section ul li:hover i {
    transform: translateX(-2px);
    opacity: 0.9;
}

.booking {
    text-align: center;
    background-color: white;
    padding: 80px 0;
    background: linear-gradient(to bottom, white, var(--section-bg1));
    position: relative;
}

.booking:before {
    content: "🩶";
    position: absolute;
    top: 20px;
    left: 10%;
    font-size: 80px;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.booking:after {
    content: "🌲";
    position: absolute;
    bottom: 20px;
    right: 10%;
    font-size: 90px;
    opacity: 0.1;
    transform: rotate(15deg);
}

.booking h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.booking p {
    font-size: 18px;
    color: var(--secondary);
    max-width: 700px;
    margin: 0 auto 30px;
}

.booking-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contact {
    background-color: var(--dark);
    color: white;
    padding: 60px 0;
    text-align: center;
    background-image: linear-gradient(135deg, var(--dark) 0%, #3a5751 100%);
    position: relative;
    overflow: hidden;
}

.contact:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/api/placeholder/1500/800') center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.contact p {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(233, 171, 68, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
}

footer {
    background-color: var(--dark);
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* Декоративные елочки */
#about::before {
    content: "🌲";
    position: absolute;
    top: 20px;
    left: 5%;
    font-size: 80px;
    opacity: 0.1;
    transform: rotate(-5deg);
}

#about::after {
    content: "🌲";
    position: absolute;
    bottom: 40px;
    right: 5%;
    font-size: 60px;
    opacity: 0.1;
    transform: rotate(5deg);
}

#spaces::before {
    content: "🌲";
    position: absolute;
    top: 120px;
    left: 8%;
    font-size: 90px;
    opacity: 0.08;
    transform: rotate(-8deg);
}

#spaces::after {
    content: "🌲";
    position: absolute;
    top: 50px;
    right: 8%;
    font-size: 70px;
    opacity: 0.08;
    transform: rotate(8deg);
}

#location::before {
    content: "🌲";
    position: absolute;
    bottom: 80px;
    left: 10%;
    font-size: 75px;
    opacity: 0.07;
    transform: rotate(-3deg);
}

#location::after {
    content: "🌲";
    position: absolute;
    top: 120px;
    right: 7%;
    font-size: 85px;
    opacity: 0.07;
    transform: rotate(3deg);
}

#rules::before {
    content: "🌲";
    position: absolute;
    top: 60px;
    left: 15%;
    font-size: 65px;
    opacity: 0.08;
    transform: rotate(-10deg);
}

#rules::after {
    content: "🌲";
    position: absolute;
    bottom: 100px;
    right: 12%;
    font-size: 75px;
    opacity: 0.08;
    transform: rotate(6deg);
}

.contact::before {
    content: "🌲 🌲 🌲";
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 30px;
    opacity: 0.15;
    letter-spacing: 50px;
    z-index: 0;
}

#spaces .section-title p .highlight-phrase {
    background-color: rgba(66, 117, 106, 0.08);
    padding: 5px 10px;
    border-radius: 6px;
    color: var(--primary);
    font-weight: 500;
    position: relative;
    display: inline-block;
    margin-top: 5px;
}

#spaces .section-title p .highlight-phrase::before {
    color: var(--accent);
    margin-right: 8px;
    font-size: 0.9em;
}

/* Галерея */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 20px 15px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-tag {
    font-size: 12px;
    background-color: var(--accent);
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 5px;
}

/* Модальное окно для галереи */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.gallery-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.gallery-modal-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

.gallery-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-close:hover {
    transform: rotate(90deg);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gallery-nav:hover {
    background-color: rgba(255,255,255,0.3);
}

.gallery-prev {
    left: -80px;
}

.gallery-next {
    right: -80px;
}

/* Табы домов */
.houses-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px;
}

.house-tab {
    padding: 12px 30px;
    background-color: rgba(255, 255, 255, 0.7);
    border: 2px solid var(--primary);
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 18px;
}

.house-tab:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.house-tab:hover:before,
.house-tab.active:before {
    left: 0;
}

.house-tab:hover,
.house-tab.active {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.house-content {
    display: none;
}

.house-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Дом */
.house-hero {
    display: flex;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.house-hero-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.house-hero-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.house-hero-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
}

.house-hero-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--accent);
    bottom: 0;
    left: 0;
}

.house-hero-description {
    margin-bottom: 25px;
    color: var(--secondary);
}

.house-badge {
    display: inline-block;
    background-color: rgba(66, 117, 106, 0.1);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-right: 10px;
    margin-bottom: 10px;
}

.house-badges {
    margin-bottom: 25px;
}

/* Выбор дома для бронирования */
.house-selector {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.house-select-btn {
    background-color: white;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid var(--primary);
}

.house-select-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.house-select-btn.active:before,
.house-select-btn:hover:before {
    left: 0;
}

.house-select-btn.active,
.house-select-btn:hover {
    color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.house-select-btn h3 {
    font-size: 20px;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.house-select-btn.active h3,
.house-select-btn:hover h3 {
    color: white;
}

.house-select-btn p {
    font-size: 14px;
    color: var(--secondary);
    transition: color 0.3s ease;
}

.house-select-btn.active p,
.house-select-btn:hover p {
    color: rgba(255,255,255,0.8);
}

/* Чат */
.sticky-chat-invitation {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 15px 20px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 3px solid var(--accent);
    transition: transform 0.3s ease;
}

.sticky-chat-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sticky-chat-text {
    flex-grow: 1;
}

.sticky-chat-text h4 {
    margin: 0 0 5px 0;
    color: var(--primary);
    font-size: 16px;
}

.sticky-chat-text p {
    margin: 0;
    font-size: 14px;
    color: var(--secondary);
}

.sticky-chat-actions {
    display: flex;
    gap: 10px;
}

.sticky-chat-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    box-shadow: none;
}

.sticky-chat-btn i {
    font-size: 18px;
}

.sticky-chat-btn-whatsapp {
    background-color: #25D366;
    color: white !important;
}

.sticky-chat-btn-whatsapp:hover {
    background-color: #1ea855;
    transform: translateY(-3px);
}

.sticky-chat-btn-telegram {
    background-color: #0088cc;
    color: white !important;
}

.sticky-chat-btn-telegram:hover {
    background-color: #0070a9;
    transform: translateY(-3px);
}

.sticky-chat-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(233, 171, 68, 0.3);
}

.sticky-chat-close {
    background: none;
    border: none;
    color: #aaa;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.sticky-chat-close:hover {
    color: #666;
}

.sticky-chat-invitation.hidden {
    transform: translateY(100%);
}

.sticky-chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0);
}

.sticky-chat-toggle.visible {
    opacity: 1;
    transform: scale(1);
}

.sticky-chat-toggle:hover {
    transform: scale(1.1);
    background-color: var(--button-primary-hover);
}

/* Адаптивная верстка */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .space-title {
        font-size: 24px;
    }
    
    .slider-container {
        height: 300px;
    }
    
    .booking-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .sticky-chat-invitation {
        flex-direction: row;
        padding: 8px 10px;
        align-items: center;
    }
    
    .sticky-chat-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        margin-bottom: 0;
    }
    
    .sticky-chat-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .sticky-chat-text {
        flex: 1;
    }
    
    .sticky-chat-text h4 {
        font-size: 13px;
        margin: 0;
        white-space: nowrap;
    }
    
    .sticky-chat-text p {
        display: none;
    }
    
    .sticky-chat-actions {
        display: flex;
        gap: 8px;
        margin-left: auto;
    }
    
    .sticky-chat-btn {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 6px;
    }
    
    .sticky-chat-btn i {
        font-size: 16px;
        margin-right: 0;
    }
    
    .sticky-chat-btn span {
        display: none;
    }
    
    .sticky-chat-close {
        margin-left: 5px;
        font-size: 16px;
        padding: 3px;
    }
    
    .house-hero {
        flex-direction: column;
    }
    
    .house-hero-image {
        min-height: 250px;
    }
    
    .house-hero-content {
        padding: 25px;
    }
    
    .house-selector {
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .houses-tabs {
        flex-direction: column;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    #about::before, #about::after,
    #spaces::before, #spaces::after,
    #location::before, #location::after,
    #rules::before, #rules::after {
        font-size: 50px;
    }
    
    .booking::before, .booking::after {
        font-size: 60px;
    }
    
    .contact::before, .contact::after {
        font-size: 20px;
        letter-spacing: 20px;
    }
    
    .gallery-prev {
        left: -60px;
    }
    
    .gallery-next {
        right: -60px;
    }
    
    body {
        padding-bottom: 60px;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .space-title {
        font-size: 20px;
    }
    
    .slider-container {
        height: 250px;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .amenities-list {
        grid-template-columns: 1fr;
    }
    
    .gallery-prev, .gallery-next {
        display: none;
    }
}

/* Для планшетов */
@media (min-width: 769px) and (max-width: 1024px) {
    .house-hero {
        flex-direction: column;
    }
    
    .amenities-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sticky-chat-text p {
        display: none;
    }
}

/* Для высоких экранов */
@media (min-height: 1200px) {
    .hero {
        height: 60vh;
    }
}

/* Для принтера */
@media print {
    .sticky-chat-invitation,
    .sticky-chat-toggle,
    .cta-buttons,
    .gallery-item,
    .booking-buttons,
    .social-icons {
        display: none;
    }
    
    body {
        padding-bottom: 0;
    }
    
    .slider-container {
        height: auto;
        page-break-inside: avoid;
    }
    
    .slide:not(.active) {
        display: none;
    }
    
    .slide.active {
        position: relative;
        height: auto;
        max-height: 300px;
    }
    
    section {
        page-break-inside: avoid;
    }
    
    .house-hero {
        page-break-inside: avoid;
    }
    
    .slider-btn, .slider-nav {
        display: none;
    }
}
:root {
    --primary: #42756a;
    --secondary: #686868;
    --accent: #e9ab44;
    --light: #f5f5f5;
    --dark: #1e322f;
    --section-bg1: #f9f7f4;
    --section-bg2: #e9f3ef;
    --text-highlight: #dd6d37;
    --cozy: #a35638;
    --button-primary: #e9ab44;
    --button-primary-hover: #f8d396;
    --button-outline: #1e322f;
    --button-outline-hover: #dd6d37;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: var(--light);
    padding-bottom: 80px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #f9f7e8;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--button-primary);
    color: var(--dark);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(233, 171, 68, 0.3);
    font-weight: 600;
    border: none;
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--button-primary-hover);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover:before {
    left: 0;
}

.btn-primary:hover {
    color: var(--dark);
    box-shadow: 0 6px 15px rgba(233, 171, 68, 0.4);
}

.btn-outline {
    border: 2px solid var(--button-outline);
    color: var(--button-outline);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(30, 50, 47, 0.1);
    font-weight: 600;
}

.btn-outline:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--button-outline);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline:hover:before {
    left: 0;
}

.btn-outline:hover {
    color: white;
    box-shadow: 0 6px 15px rgba(30, 50, 47, 0.3);
}

.btn i {
    margin-right: 8px;
}

.hero {
    height: 85vh;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    color: white;
}

.hero h1 span {
    color: var(--accent);
    display: block;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

section:nth-child(odd) {
    background-color: var(