/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.bg-light {
    background-color: #f9f7f4;
}

section {
    padding: 80px 0;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #3b2818;
}

/* Header */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d35400;
    text-decoration: none;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #d35400;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(59, 40, 24, 0.7), rgba(59, 40, 24, 0.7)), url('https://images.unsplash.com/photo-1497935586351-b67a49e012bf?auto=format&fit=crop&w=1200&q=80') center/cover;
    color: #fff;
    text-align: center;
    padding: 150px 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #d35400;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
    font-weight: bold;
}

/* Article */
.article-section article p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Reviews */
.review-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    flex: 1;
    max-width: 400px;
}

.stars {
    color: #f1c40f;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 15px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    color: #3b2818;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 15px;
}

.faq-answer p {
    padding-bottom: 15px;
}

/* Contact */
.contact-section {
    text-align: center;
}

/* Footer */
.site-footer {
    background: #2c1e16;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 20px;
    color: #d35400;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #443;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

@media (max-width: 768px) {
    .nav-container { flex-direction: column; height: auto; padding: 15px 0; }
    .main-nav { margin-top: 15px; }
    .main-nav a { margin: 0 10px; }
    .review-grid, .footer-container { flex-direction: column; }
}