:root {
  --bg: #f7fbff;
  --primary: #2f80ed;
  --secondary: #56ccf2;
  --text: #1f2937;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.hero {
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
}

.hero p {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  max-width: 700px;
  margin: 20px auto;
}

section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 2.8rem);
  margin-bottom: 25px;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background: var(--card);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.7rem);
  margin-bottom: 12px;
}

.about {
  text-align: center;
}

.about p {
  max-width: 800px;
  margin: 18px auto;
  line-height: 1.9;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.map-container iframe {
  width: 100%;
  border: none;
  border-radius: 16px;
  box-shadow: var(--shadow);
  height: 400px;
}

footer {
  background: #111827;
  color: white;
  padding: 50px 20px;
  text-align: center;
}

footer p {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  margin-bottom: 12px;
}

footer strong {
  color: var(--secondary);
}
