/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Tahoma, sans-serif; line-height: 1.6; color: #333; background: #f8f9fa; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
#header { display: flex; justify-content: space-between; align-items: center; padding: 20px 40px; background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,.08); position: sticky; top: 0; z-index: 100; }
#header .logo img { height: 50px; }
#header nav ul { display: flex; list-style: none; gap: 25px; }
#header nav a { text-decoration: none; color: #333; font-weight: 600; transition: color .2s; }
#header nav a:hover, #header nav a.active { color: #0077b6; }

/* Breadcrumbs */
.breadcrumbs { padding: 12px 40px; background: #e9ecef; font-size: 14px; }
.breadcrumbs a { color: #0077b6; text-decoration: none; }
.breadcrumbs span { color: #666; }

/* Hero Banner */
#home_banner { background: linear-gradient(135deg, #0077b6, #00b4d8); color: white; padding: 60px 40px; text-align: center; }
#home_banner h1 { font-size: 42px; margin-bottom: 15px; }
#home_banner p { font-size: 18px; max-width: 700px; margin: 0 auto 25px; }
.cta-btn { display: inline-block; background: #ff6b35; color: white; padding: 14px 32px; border-radius: 6px; text-decoration: none; font-weight: 600; transition: transform .2s; }
.cta-btn:hover { transform: translateY(-3px); }

/* Boxes */
#box_area { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 25px; padding: 50px 40px; }
.box { background: white; border-radius: 10px; padding: 30px; box-shadow: 0 4px 15px rgba(0,0,0,.06); transition: transform .3s; }
.box:hover { transform: translateY(-8px); }
.box h2 { color: #0077b6; margin-bottom: 15px; font-size: 24px; }
.box p { margin-bottom: 15px; }

/* Content Sections */
.content-section { padding: 50px 40px; background: white; margin: 20px 0; border-radius: 10px; }
.content-section h2 { color: #0077b6; margin-bottom: 20px; border-bottom: 3px solid #00b4d8; padding-bottom: 10px; }
.content-section h3 { color: #023e8a; margin: 20px 0 10px; }
.content-section ul { margin-left: 25px; margin-bottom: 15px; }
.content-section li { margin-bottom: 8px; }

/* FAQ */
.faq-item { background: #f8f9fa; padding: 20px; border-radius: 8px; margin-bottom: 12px; border-left: 4px solid #0077b6; }
.faq-item h3 { color: #023e8a; margin-bottom: 8px; }

/* Blog Cards */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 25px; }
.blog-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,.08); transition: transform .3s; }
.blog-card:hover { transform: translateY(-5px); }
.blog-card img { width: 100%; height: 180px; object-fit: cover; }
.blog-card .content { padding: 20px; }
.blog-card h3 { color: #0077b6; margin-bottom: 10px; }
.blog-card .date { color: #888; font-size: 13px; }

/* Contact Form */
.contact-form { max-width: 600px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 5px; font-size: 16px; }
.contact-form button { background: #0077b6; color: white; padding: 12px 30px; border: none; border-radius: 5px; cursor: pointer; font-size: 16px; }
.contact-form button:hover { background: #023e8a; }

/* Footer */
#footer { background: #023e8a; color: white; padding: 40px; margin-top: 40px; }
#footer .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 30px; margin-bottom: 25px; }
#footer h4 { margin-bottom: 15px; color: #90e0ef; }
#footer a { color: white; text-decoration: none; display: block; padding: 4px 0; }
#footer a:hover { color: #ff6b35; }
#footer .copyright { text-align: center; padding-top: 20px; border-top: 1px solid #4488aa; }

/* Responsive */
@media (max-width: 768px) {
  #header { flex-direction: column; gap: 15px; }
  #header nav ul { flex-wrap: wrap; justify-content: center; }
  #home_banner h1 { font-size: 28px; }
}