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

:root {
  --navy: #1b2a41;
  --blue: #3a6ea5;
  --light-blue: #eaf1f8;
  --text: #2b2b2b;
  --muted: #5c6773;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* Header */
header {
  border-bottom: 1px solid #e2e6ea;
  padding: 18px 0;
  font-family: Arial, Helvetica, sans-serif;
}

.header-top {
  padding: 8px 0;
  border-bottom: 1px solid #eef1f4;
}

.lang-switch {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  font-size: 13px;
}

.lang-switch a {
  color: var(--muted);
  letter-spacing: 0.03em;
}

.lang-switch a.active {
  color: var(--navy);
  font-weight: bold;
}

.lang-switch a:hover {
  color: var(--blue);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img { height: 50px; width: auto; }

.brand span {
  font-size: 22px;
  color: var(--navy);
  font-family: Georgia, serif;
}

nav ul {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

nav a {
  color: var(--navy);
  font-size: 15px;
  padding-bottom: 4px;
}

nav a.active,
nav a:hover {
  border-bottom: 2px solid var(--blue);
}

/* Hero */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 35, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: normal;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 28px;
}

/* Page header (non-home pages) */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 36px;
  font-weight: normal;
  margin-bottom: 10px;
}

.page-hero p {
  color: #cdd8e6;
  max-width: 700px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  border: none;
  cursor: pointer;
}

.btn:hover { background: #2c567f; }

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

.section-title {
  font-size: 30px;
  font-weight: normal;
  color: var(--navy);
  margin-bottom: 16px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.two-col img { border-radius: 6px; }

.muted { color: var(--muted); }

/* Services grid */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.card img { height: 180px; object-fit: cover; width: 100%; }

.card-body { padding: 22px; }

.card-body h3 {
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: normal;
}

.card-body p { font-size: 15px; color: var(--muted); }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
  max-width: 700px;
}

.team-card {
  background: var(--light-blue);
  border-radius: 6px;
  padding: 28px;
  text-align: center;
}

.team-card h3 {
  color: var(--navy);
  font-weight: normal;
  margin-bottom: 6px;
}

.team-card p { color: var(--muted); font-size: 14px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info h3 {
  color: var(--navy);
  font-weight: normal;
  margin-bottom: 14px;
}

.contact-info p { margin-bottom: 10px; }

/* Forms */
form {
  display: grid;
  gap: 16px;
  font-family: Arial, Helvetica, sans-serif;
}

form label {
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 4px;
  display: block;
}

form input,
form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d5dbe2;
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
}

form textarea { min-height: 120px; resize: vertical; }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.checkbox-row input { width: auto; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Footer */
footer {
  background: var(--navy);
  color: #cdd8e6;
  padding: 40px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

footer a:hover { text-decoration: underline; }

@media (max-width: 800px) {
  .two-col, .contact-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 34px; }
}
