* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: #333; line-height: 1.6; scroll-behavior: smooth; }
.container { width: 85%; max-width: 1100px; margin: auto; }
.bg-light { background: #f9f9f9; padding: 80px 0; text-align: center; }

header { padding: 20px 0; background: #fff; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 100; }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: bold; letter-spacing: 2px; }
nav ul { display: flex; list-style: none; align-items: center; }
nav ul li { margin-left: 20px; }
nav ul li a { text-decoration: none; color: #333; font-weight: 600; font-size: 14px; }

.hero { 
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hero-sofa.jpg') center/cover; 
    height: 80vh; display: flex; align-items: center; color: #fff; text-align: center;
}
.hero h1 { font-family: 'Playfair Display', serif; font-size: 48px; margin-bottom: 20px; }
.hero p { font-size: 18px; max-width: 700px; margin: 0 auto 30px; }

.btn-primary { background: #bc9355; color: #fff; padding: 15px 30px; text-decoration: none; border-radius: 4px; display: inline-block; }
.btn-secondary { background: transparent; border: 2px solid #fff; color: #fff; padding: 13px 30px; text-decoration: none; border-radius: 4px; display: inline-block; margin-left: 10px; }
.btn-nav { background: #333; color: #fff !important; padding: 8px 15px; border-radius: 4px; }

.trust { display: flex; flex-wrap: wrap; justify-content: space-between; padding: 80px 0; text-align: center; }
.trust-item { flex: 1; min-width: 250px; padding: 20px; }
.trust-item h3 { font-family: 'Playfair Display', serif; margin-bottom: 15px; font-size: 22px; }

.education h2 { font-family: 'Playfair Display', serif; font-size: 32px; margin-bottom: 20px; }
.education p { max-width: 800px; margin: auto; color: #555; }

footer { background: #1a1a1a; color: #fff; padding: 40px 0; text-align: center; font-size: 14px; }
.wa-float { position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px; background-color: #25d366; border-radius: 50px; text-align: center; z-index: 100; box-shadow: 2px 2px 10px rgba(0,0,0,0.2); }
.wa-float img { width: 30px; margin-top: 15px; }

@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .nav ul { display: none; }
}