@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; line-height: 1.6; color: #333; background: #fafbfc; }
.header { background: white; padding: 1rem 0; box-shadow: 0 2px 5px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 100; }
.nav-container { max-width:1200px; margin:0 auto; padding:0 2rem; display:flex; justify-content:space-between; align-items:center; }
.logo { font-size:1.5rem; font-weight:bold; color:#2c5f5f; text-decoration:none; }
.nav-menu { display:flex; gap:2rem; list-style:none; }
.nav-menu a { text-decoration:none; color:#333; font-weight:500; transition:color .3s; }
.nav-menu a:hover { color:#2c5f5f; }

.hero { height:60vh; background:linear-gradient(rgba(44,95,95,0.3),rgba(44,95,95,0.3)),url('images/hero.jpg') center/cover; display:flex; align-items:center; justify-content:center; text-align:center; color:white; }
.hero-content h1 { font-size:2.8rem; margin-bottom:1rem; font-weight:300; letter-spacing:1px; }
.hero-content p { font-size:1.2rem; max-width:600px; margin:0 auto; line-height:1.8; }
.explore-btn { background:transparent; color:white; padding:12px 30px; border:2px solid white; border-radius:5px; font-size:1rem; margin-top:2rem; display:inline-block; text-decoration:none; transition:all .3s; }
.explore-btn:hover, .explore-btn.clicked { background:white; color:#2c5f5f; }

.main-content { max-width:1200px; margin:0 auto; padding:4rem 2rem; background:#fafbfc; }
.section-title { text-align:center; font-size:2.5rem; margin-bottom:3rem; font-weight:300; color:#333; }
.intro-text { text-align:center; max-width:800px; margin:0 auto 4rem auto; font-size:1.1rem; line-height:1.8; color:#666; }

.discover-list { text-align:center; list-style:none; padding:0; max-width:800px; margin:2rem auto 4rem; font-size:1.05rem; color:#2c5f5f; }
.discover-list li::before { content: "▪ "; color:#2c5f5f; font-weight:bold; }

.services-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:3rem; margin-bottom:4rem; }
.service-card { text-align:center; padding:2rem; border:2px solid transparent; border-radius:10px; transition:all .3s; cursor:pointer; background:white; box-shadow:0 2px 15px rgba(0,0,0,0.08); }
.service-card:hover { transform:translateY(-5px); box-shadow:0 10px 25px rgba(0,0,0,0.15); }
.service-card-image img { width:100%; height:200px; object-fit:cover; border-radius:8px; margin-bottom:1.5rem; }

.cta-section { background:#f8f9fa; padding:4rem 2rem; text-align:center; }
.cta-container { max-width:800px; margin:0 auto; }
.cta-title { font-size:2.2rem; margin-bottom:1.5rem; font-weight:300; color:#333; }
.cta-text { font-size:1.1rem; line-height:1.8; margin-bottom:2rem; color:#666; }
.cta-buttons { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.btn-primary, .btn-secondary { background:transparent; border:2px solid #2c5f5f; color:#2c5f5f; padding:12px 30px; border-radius:5px; font-size:1rem; text-decoration:none; display:inline-block; font-family:'Poppins',sans-serif; transition:all .3s; }
.btn-primary:hover, .btn-secondary.clicked, .btn-primary.clicked { background:#2c5f5f; color:white; }
.btn-secondary:hover, .btn-secondary.clicked { background:#2c5f5f; color:white; }

.footer { background:#2c5f5f; color:white; padding:3rem 2rem 2rem; }
.footer-container { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:2rem; }
.footer-section h4 { margin-bottom:1rem; font-size:1.2rem; }
.footer-section ul { list-style:none; }
.footer-section li { margin-bottom:0.5rem; }
.footer-section a { color:rgba(255,255,255,0.8); text-decoration:none; transition:color .3s; }
.footer-section a:hover { color:white; }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.2); margin-top:2rem; padding-top:1rem; text-align:center; color:rgba(255,255,255,0.7); }

@media (max-width:768px) {
  .hero-content h1 { font-size:2.5rem; }
  .nav-menu, .cta-buttons { flex-direction:column; gap:1rem; }
}