/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; background: #fff; margin-top: 80px; }
.container { width: 90%; max-width: 1100px; margin: auto; }

/* Header */
.site-header { background: #fff; border-bottom: 1px solid #eee; position: fixed; width: 100%; top: 0; z-index: 1000; }
.header-container { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.logo { font-size: 1.5rem; font-weight: bold; }
.nav ul { display: flex; gap: 1rem; list-style: none; }
.nav a { text-decoration: none; color: #333; padding: 0.5rem; transition: color 0.3s; }
.nav a:hover { color: #007BFF; }

/* Hero */
.hero { background: url('images/hero.png') center/cover no-repeat; height: 600px; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-content { color: #fff; }
.hero h2 { font-size: 3rem; margin-bottom: 1rem; }
.hero p { font-size: 1.25rem; margin-bottom: 1.5rem; }
.btn { display: inline-block; padding: 0.75rem 1.5rem; border: 2px solid #fff; color: #fff; text-decoration: none; transition: background 0.3s; }
.btn:hover { background: rgba(255,255,255,0.2); }

/* Sections */
.section { padding: 6rem 0 4rem; }
.section h3 { font-size: 2rem; margin-bottom: 1.5rem; text-align: center; }

/* About */
.about-content { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.about-text { flex: 1; }
.about-image img { width: 100%; border-radius: 8px; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 2rem; }
.service-card { padding: 1.5rem; border: 1px solid #eee; border-radius: 8px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

/* Contact */
.contact p { text-align: center; font-size: 1rem; }
.contact a { color: #007BFF; text-decoration: none; }

/* Footer */
.site-footer { background: #f9f9f9; padding: 1rem 0; text-align: center; font-size: 0.9rem; color: #666; }

/* Responsive */
@media (max-width: 768px) {
  .about-content { flex-direction: column; }
  .hero { height: 400px; }
  .hero h2 { font-size: 2rem; }
}