:root {
  --primary: #009688;
  --secondary: #FFC107;
  --bg: #ffffff;
  --text: #171717;
  --muted: #4a4a4a;
  --surface: #f7f7f7;
  --overlay: rgba(0, 150, 136, 0.08);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", "Montserrat", "Arial", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0.2px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
  color: var(--secondary);
  opacity: 0.9;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

header {
  background: linear-gradient(135deg, rgba(0, 150, 136, 0.12), rgba(255, 193, 7, 0.12));
  padding: 60px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 16px;
  color: var(--text);
}

.hero p {
  color: var(--muted);
  max-width: 520px;
}

.hero .cta-group {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

button, .btn {
  background: var(--primary);
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow);
}

button:hover, .btn:hover {
  background: #007d70;
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--secondary);
  color: #1a1a1a;
}

.btn-secondary:hover {
  background: #e0a800;
}

section {
  padding: 70px 0;
  position: relative;
}

.section-title {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 640px;
}

.asymmetric-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: start;
}

.card {
  background: var(--surface);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.card h3 {
  margin-top: 0;
  color: var(--primary);
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--secondary);
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.85rem;
}

.texture {
  background-image: radial-gradient(circle, rgba(0,150,136,0.08) 1px, transparent 1px);
  background-size: 16px 16px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.gallery img {
  height: 220px;
  object-fit: cover;
}

.footer {
  background: var(--overlay);
  padding: 40px 0;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .asymmetric-grid {
    grid-template-columns: 1fr;
  }
}