/* Reset & Typography */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height:1.6; color:#333333; background:#F7F8FA; }
a { text-decoration:none; }

/* Header / Navigation */
header { background:#1B2A49; padding:15px 30px; color:white; display:flex; justify-content:space-between; align-items:center; }
.logo img { height:50px; }
.nav-links { list-style:none; display:flex; gap:25px; }
.nav-links li a { color:white; font-weight:600; transition:0.3s; }
.nav-links li a:hover { color:#F4C430; }

/* Hero Section */
.hero { text-align:center; padding:80px 20px; background:#2FA4A6; color:white; border-bottom: 5px solid #F4C430; }
.hero h1 { font-size:2.8rem; margin-bottom:15px; }
.hero p { font-size:1.3rem; margin-bottom:25px; }
.btn { padding:12px 30px; border:none; border-radius:5px; cursor:pointer; font-weight:600; display:inline-block; transition:0.3s; }
.btn-primary { background:#F4C430; color:#1B2A49; }
.btn-primary:hover { background:#e0b020; }
.btn-secondary { background:white; color:#1B2A49; }
.btn-secondary:hover { background:#f0f0f0; }

/* Sections */
section { padding:60px 20px; max-width:1200px; margin:0 auto; }
h2 { color:#1B2A49; font-size:2rem; margin-bottom:20px; text-align:center; }
.service-grid, .case-list, .resource-list { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:25px; margin-top:30px; }
.service, .case, .resource { background:white; padding:25px; border-radius:12px; box-shadow:0 4px 15px rgba(0,0,0,0.08); transition:transform 0.3s, box-shadow 0.3s; }
.service:hover, .case:hover, .resource:hover { transform:translateY(-5px); box-shadow:0 8px 20px rgba(0,0,0,0.15); }

/* Accordion for FAQs */
.accordion { max-width:800px; margin:0 auto; }
.accordion-item { background:white; border-radius:8px; margin-bottom:15px; overflow:hidden; box-shadow:0 2px 10px rgba(0,0,0,0.05); }
.accordion-header { padding:15px 20px; cursor:pointer; background:#1B2A49; color:white; font-weight:600; display:flex; justify-content:space-between; align-items:center; }
.accordion-content { padding:15px 20px; display:none; background:#F7F8FA; }

/* Testimonials Slider */
.testimonial-slider { display:flex; overflow-x:auto; gap:20px; scroll-snap-type: x mandatory; padding-bottom:10px; }
.testimonial-slider::-webkit-scrollbar { display:none; }
.testimonial { min-width:300px; scroll-snap-align:start; background:white; padding:25px; border-radius:12px; box-shadow:0 4px 15px rgba(0,0,0,0.08); }
.testimonial blockquote { font-style:italic; margin-bottom:15px; }

/* Footer */
footer { background:#1B2A49; color:white; text-align:center; padding:25px 10px; margin-top:50px; }

/* Responsive */
@media (max-width:768px){
  .nav-links { flex-direction:column; gap:15px; margin-top:10px; }
  .hero h1 { font-size:2rem; }
  .hero p { font-size:1.1rem; }
}
