* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
body { background: #f4f1ea; color: #2d2a24; line-height: 1.6; padding-top: 70px; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.lang-bar {
    background: #1a3c2a; color: #fff; padding: 6px 20px;
    display: flex; justify-content: flex-end; gap: 10px; font-size: 13px;
    position: fixed; top: 0; right: 0; z-index: 1001; border-radius: 0 0 0 12px;
}
.lang-bar span { cursor: pointer; padding: 3px 12px; border-radius: 20px; transition: 0.3s; }
.lang-bar span.active { background: #c9a84c; color: #1a3c2a; font-weight: bold; }
.lang-bar span:hover { background: #c9a84c; color: #1a3c2a; }

header {
    background: linear-gradient(135deg, #1a3c2a, #2a5a3a); color: #fff;
    padding: 10px 0; position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.header-container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.logo h1 { font-size: 20px; letter-spacing: 1px; }
.logo small { font-size: 11px; opacity: 0.8; display: block; }
.nav-toggle { display: none; font-size: 26px; cursor: pointer; background: none; border: none; color: #fff; }
.nav-menu { display: flex; gap: 6px; flex-wrap: wrap; }
.nav-menu a { padding: 6px 14px; border-radius: 25px; font-size: 13px; transition: 0.3s; font-weight: 500; }
.nav-menu a:hover, .nav-menu a.active { background: #c9a84c; color: #1a3c2a; }

.hero {
    background: linear-gradient(rgba(26,60,42,0.8), rgba(26,60,42,0.8));
    padding: 60px 20px; text-align: center; color: #fff; min-height: 300px;
    display: flex; align-items: center; justify-content: center;
}
.hero h2 { font-size: 36px; margin-bottom: 10px; }
.hero p { font-size: 18px; max-width: 700px; margin: 0 auto 20px; opacity: 0.9; }
.hero .badge { background: #c9a84c; color: #1a3c2a; padding: 8px 24px; border-radius: 30px; font-weight: bold; display: inline-block; }

section { padding: 50px 0; }
.section-title { font-size: 30px; color: #1a3c2a; border-left: 5px solid #c9a84c; padding-left: 18px; margin-bottom: 10px; }
.section-subtitle { color: #666; margin-bottom: 25px; font-size: 16px; padding-left: 23px; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin: 20px 0; }
.card { background: #fff; border-radius: 12px; padding: 22px; box-shadow: 0 4px 15px rgba(0,0,0,0.06); border-top: 4px solid #c9a84c; transition: 0.3s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.card i { font-size: 28px; color: #c9a84c; margin-bottom: 12px; }
.card h3 { color: #1a3c2a; margin-bottom: 8px; }

.quick-links { background: #fff; border-radius: 12px; padding: 25px; margin-top: 30px; box-shadow: 0 4px 15px rgba(0,0,0,0.06); }
.quick-links h3 { color: #1a3c2a; margin-bottom: 15px; }
.link-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; }
.quick-link { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: #f4f1ea; border-radius: 8px; transition: 0.3s; color: #1a3c2a; }
.quick-link:hover { background: #c9a84c; color: #fff; }
.quick-link i { font-size: 20px; }

.featured-members { margin-top: 30px; background: #fff; border-radius: 12px; padding: 25px; box-shadow: 0 4px 15px rgba(0,0,0,0.06); }
.featured-members h3 { color: #1a3c2a; margin-bottom: 20px; }
.featured-members .member-card { border: 2px solid #e8e4dc; padding: 15px; text-align: center; }
.featured-members .member-card .avatar { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; margin: 0 auto 10px; border: 3px solid #c9a84c; }
.featured-members .member-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.featured-members .member-card h4 { color: #1a3c2a; font-size: 16px; }
.featured-members .member-card .role { font-size: 12px; color: #c9a84c; }
.view-btn { display: inline-block; padding: 4px 16px; background: #c9a84c; color: #fff; border-radius: 15px; font-size: 12px; margin-top: 8px; transition: 0.3s; }
.view-btn:hover { background: #1a3c2a; }
.text-center { text-align: center; margin-top: 15px; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 25px; border-radius: 30px; border: none; font-size: 15px; cursor: pointer; transition: 0.3s; text-decoration: none; }
.btn-primary { background: #1a3c2a; color: #fff; }
.btn-primary:hover { background: #c9a84c; color: #1a3c2a; }

footer { background: #1a3c2a; color: #ccc; padding: 30px 0 15px; margin-top: 40px; border-top: 3px solid #c9a84c; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 20px; }
.footer-col h3 { color: #fff; margin-bottom: 12px; font-size: 16px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { padding: 4px 0; }
.footer-col ul li a:hover { color: #c9a84c; }
.footer-col p { margin: 4px 0; font-size: 14px; }
.social-icons { display: flex; gap: 12px; }
.social-icons a { color: #fff; font-size: 22px; transition: 0.3s; }
.social-icons a:hover { color: #c9a84c; transform: scale(1.1); }
.footer-bottom { text-align: center; padding-top: 15px; border-top: 1px solid #2a5a3a; font-size: 13px; }

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-menu { display: none; width: 100%; flex-direction: column; align-items: center; padding-top: 15px; gap: 4px; }
    .nav-menu.open { display: flex; }
    .nav-menu a { width: 100%; text-align: center; padding: 10px; }
    .hero h2 { font-size: 26px; }
    .section-title { font-size: 24px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-icons { justify-content: center; }
}