* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, sans-serif; background: #fff5e6; color: #3a2a14; line-height: 1.6; }
a { text-decoration: none; color: inherit; }

/* Header */
header { background: #4a2511; padding: 12px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.logo { font-size: 28px; font-weight: 900; color: #f5b042; letter-spacing: 2px; text-transform: uppercase; }
nav ul { display: flex; gap: 6px; list-style: none; flex-wrap: wrap; }
nav ul li a { color: #fff5e6; padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 500; transition: all 0.3s; }
nav ul li a:hover, nav ul li a.active { background: #f5b042; color: #4a2511; }
.auth-buttons { display: flex; gap: 8px; }
.btn-login, .btn-register { padding: 8px 18px; border-radius: 20px; font-size: 14px; font-weight: 600; }
.btn-login { background: transparent; color: #f5b042; border: 2px solid #f5b042; }
.btn-register { background: #f5b042; color: #4a2511; }
.btn-login:hover { background: #f5b042; color: #4a2511; }
.btn-register:hover { background: #e6a030; }

/* Hero */
.hero { background: linear-gradient(135deg, #fce4b5 0%, #f7c97f 100%); padding: 40px 20px; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.hero-text { flex: 1; min-width: 280px; }
.hero-text h1 { font-size: 36px; color: #4a2511; margin-bottom: 16px; line-height: 1.2; }
.hero-text p { font-size: 16px; color: #5c3a1e; margin-bottom: 20px; }
.hero-cta { display: inline-block; background: #4a2511; color: #f5b042; padding: 12px 28px; border-radius: 30px; font-weight: 700; }
.hero-cta:hover { background: #6b3a1e; }
.hero-image { flex: 1; min-width: 280px; text-align: center; }
.hero-image img { max-width: 100%; height: auto; border-radius: 12px; box-shadow: 0 6px 20px rgba(74,37,17,0.25); }

/* Section general */
.section { padding: 50px 20px; max-width: 1200px; margin: 0 auto; }
.section h2 { font-size: 28px; color: #4a2511; margin-bottom: 8px; border-bottom: 3px solid #f5b042; display: inline-block; padding-bottom: 6px; }
.section .lead { color: #6b4a2a; margin: 12px 0 28px; font-size: 15px; }

/* Card grid */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.card { background: #fff; border: 1px solid #f0d8a8; border-radius: 10px; padding: 18px; box-shadow: 0 2px 6px rgba(74,37,17,0.08); transition: transform 0.3s; }
.card:hover { transform: translateY(-4px); }
.card h3 { color: #4a2511; font-size: 17px; margin-bottom: 10px; }
.card p { color: #5c3a1e; font-size: 14px; }
.card img { width: 100%; height: auto; border-radius: 8px; margin-bottom: 12px; display: block; }

/* Story split */
.story-block { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; margin-bottom: 30px; background: #fff; border-radius: 10px; padding: 20px; border: 1px solid #f0d8a8; }
.story-block.reverse { direction: rtl; }
.story-block.reverse > * { direction: ltr; }
.story-block img { width: 100%; height: auto; border-radius: 8px; }
.story-block h3 { color: #4a2511; margin-bottom: 10px; font-size: 20px; }
.story-block p { color: #5c3a1e; font-size: 14px; margin-bottom: 8px; }
.story-block ul { padding-left: 20px; color: #5c3a1e; font-size: 14px; }

/* Service highlight */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.service-item { background: #fff; padding: 20px; border-left: 4px solid #f5b042; border-radius: 6px; }
.service-item h3 { color: #4a2511; margin-bottom: 8px; }

/* FAQ */
.faq-list { background: #fff; border-radius: 10px; padding: 24px; border: 1px solid #f0d8a8; }
.faq-item { border-bottom: 1px solid #f0d8a8; padding: 14px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h4 { color: #4a2511; font-size: 16px; margin-bottom: 8px; }
.faq-item p { color: #5c3a1e; font-size: 14px; }
.faq-item ul { padding-left: 22px; color: #5c3a1e; font-size: 14px; margin-top: 6px; }

/* Stats banner */
.stats { background: #fdebcc; padding: 30px 20px; border-radius: 10px; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; text-align: center; margin: 30px auto; max-width: 1160px; }
.stat-box h3 { color: #4a2511; font-size: 24px; }
.stat-box p { color: #6b4a2a; font-size: 13px; }

/* Testimonial */
.testimonial { background: #fff; border-left: 5px solid #f5b042; padding: 20px; margin: 20px 0; border-radius: 6px; font-style: italic; color: #5c3a1e; }

/* Footer */
footer { background: #2a1408; color: #d8b890; padding: 40px 20px 20px; margin-top: 50px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.footer-col h4 { color: #f5b042; margin-bottom: 14px; font-size: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; font-size: 14px; }
.footer-col ul li a:hover { color: #f5b042; }
.footer-col p { font-size: 13px; margin-bottom: 6px; }
.footer-bottom { text-align: center; border-top: 1px solid #5c3a1e; margin-top: 30px; padding-top: 16px; font-size: 13px; color: #b89870; }

@media (max-width: 768px) {
  .hero-text h1 { font-size: 26px; }
  .story-block { grid-template-columns: 1fr; }
  .story-block.reverse { direction: ltr; }
  nav ul { width: 100%; justify-content: center; }
  .header-inner { justify-content: center; }
}