:root {
  --primary: #0E7490;
  --secondary: #1E3A5F;
  --accent: #E63946;
  --background: #F8F9FA;
  --text: #1A1A2E;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
.navbar {
  background: var(--secondary);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

nav a {
  color: #fff;
  margin-left: 28px;
  font-size: 0.95rem;
  opacity: 0.9;
  transition: opacity 0.2s;
}

nav a:hover {
  opacity: 1;
  color: var(--accent);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #fff;
  padding: 110px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 32px;
  opacity: 0.95;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 34px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: #c8303c;
  transform: translateY(-2px);
}

/* Sections */
section {
  padding: 80px 0;
}

section h2 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 30px;
  text-align: center;
}

.about p {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
}

/* Services */
.services {
  background: #fff;
}

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

.card {
  background: var(--background);
  border-top: 4px solid var(--primary);
  border-radius: 8px;
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.card h3 {
  color: var(--secondary);
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.card p {
  font-size: 0.95rem;
  color: #444;
}

/* Why */
.why {
  background: var(--secondary);
  color: #fff;
}

.why h2 {
  color: #fff;
}

.why-list {
  list-style: none;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-list li {
  padding-left: 28px;
  position: relative;
  font-size: 1.05rem;
}

.why-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  position: absolute;
  left: 0;
}

.why-list strong {
  color: #fff;
}

/* Markets */
.markets {
  background: #fff;
}

.market-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.market-tags span {
  background: var(--background);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Contact */
.contact {
  background: var(--primary);
  color: #fff;
  text-align: center;
}

.contact h2 {
  color: #fff;
}

.contact p {
  max-width: 560px;
  margin: 0 auto 30px;
  opacity: 0.95;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 24px;
}

.contact-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
}

.contact-person a:hover {
  color: var(--accent);
}

.contact-address {
  display: block;
  font-size: 0.95rem;
  opacity: 0.9;
}

.map-embed {
  margin: 24px auto 0;
  max-width: 700px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.map-embed iframe {
  display: block;
}

/* Footer */
.footer {
  background: var(--text);
  color: #fff;
  text-align: center;
  padding: 24px 0;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
  nav a {
    margin-left: 14px;
    font-size: 0.85rem;
  }
}
