* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f7f9;
  --panel: #ffffff;
  --text: #1b1d22;
  --muted: #5d6470;
  --accent: #3a6ea5;
  --accent-soft: #e5eef7;
  --border: #dfe3ea;
  --shadow: 0 16px 40px rgba(15, 24, 38, 0.08);
}

body {
  font-family: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 24px;
}

.brand {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.98rem;
}

nav a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

nav a:hover,
nav a:focus {
  background: var(--accent-soft);
}

.hero {
  padding: 60px 0 40px;
}

.hero-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin-bottom: 16px;
}

.hero-text p {
  color: var(--muted);
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}

.button.secondary {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 40px 0;
}

.section h2 {
  font-size: 1.65rem;
  margin-bottom: 16px;
}

.section p {
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.card {
  background: var(--panel);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.media-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.info-strip {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.split {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

footer {
  background: var(--panel);
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding: 28px 0 40px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}

.legal {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 12px;
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    gap: 10px;
  }
}
