/* FAQ Section Styling */
.faq-section {
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.faq-question {
    position: relative;
    padding: 25px 30px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: #c8a97e;
    transition: all 0.3s;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 0 30px 25px;
    color: #666;
    line-height: 1.6;
}

.faq-question.active {
    color: #c8a97e;
}

/* For SEO-focused but visually hidden elements */
.seo-heading {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Breadcrumbs styling */
.breadcrumb {
    list-style: none;
    padding: 15px 0;
    margin: 0;
    background: transparent;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: inline-block;
    font-size: 14px;
    color: #888;
}

.breadcrumb-item a {
    color: #c8a97e;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: #a58866;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #333;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    padding: 0 8px;
    color: #ccc;
}

/* Add these to ensure proper content display */
body {
    overflow-x: hidden;
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    overflow: visible;
}

@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
}

/* Fix any layout issues */
.main-header {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.hero-slider {
    margin-top: 80px;
} 