.hero-image {
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
    border: 3px solid #d4b896;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    height: 450px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-scroll-container {
    display: flex;
    width: 200%;
    height: 100%;
    will-change: transform;
}

.hero-scroll-container img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.faq-section {
    background: #fff;
    padding: 50px;
    margin: 30px 0;
    border: 1px solid #e0e0e0;
}

.faq-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #2c2c2c;
    font-weight: normal;
    border-bottom: 1px solid #d4b896;
    padding-bottom: 10px;
    text-align: center;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.faq-question {
    background: none;
    border: none;
    color: #2c2c2c;
    width: 100%;
    text-align: left;
    padding: 20px 0;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    font-family: 'Georgia', serif;
}

.faq-question:hover {
    color: #8b4513;
}

.faq-toggle {
    font-size: 24px;
    transition: transform 0.3s ease;
    color: #8b4513;
}

.faq-toggle.open {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    padding: 0 20px;
}

.faq-answer.open {
    max-height: 200px;
    padding: 0 20px 20px 20px;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.social-link {
    color: #d4b896;
    font-size: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-image {
        height: 250px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        font-size: 20px;
    }
    
    .faq-section {
        padding: 30px 20px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 15px 0;
    }
    
    .faq-answer {
        font-size: 14px;
    }
}