:root {
  --bg: #ffffff;
  --text: #1f2a2d;
  --teal: #00616a;
  --teal-soft: #2fa199;
  --pink: #e6647c;
  --muted: #f3f7f8;
  --line: #d9e3e6;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Ubuntu, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

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

.narrow {
  width: min(760px, 92%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  color: var(--teal);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 42px;
  width: auto;
}

.main-nav {
  margin-left: auto;
  display: flex;
  gap: 1rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--teal);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
}

.desktop-only {
  display: inline-flex;
}

.hero {
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}

h1,
h2,
h3,
h4 {
  color: var(--teal);
  line-height: 1.15;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.accent {
  color: var(--pink);
}

.accent-mark {
  color: var(--pink);
  background: transparent;
}

.hero img {
  border-radius: var(--radius);
  object-fit: cover;
  min-height: 320px;
}

.section {
  padding: 3rem 0;
}

.section.alt {
  background: var(--muted);
}

.section-intro {
  margin-bottom: 1.5rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.card img {
  border-radius: 12px;
  height: 180px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 0.8rem;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.cta-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--teal);
  text-decoration: none;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
}

.btn:hover {
  background: var(--teal-soft);
}

.btn.btn-outline {
  background: #fff;
  color: var(--teal);
}

.btn.btn-outline:hover {
  background: #eaf4f5;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.7rem;
  background: #fff;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--teal);
}

.apply-form {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.apply-form label {
  font-weight: 700;
  color: var(--teal);
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  outline: 2px solid #8cd1cb;
  border-color: var(--teal-soft);
}

.apply-form .btn {
  margin-top: 0.4rem;
  width: fit-content;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.contact-form label {
  font-weight: 700;
  color: var(--teal);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #8cd1cb;
  border-color: var(--teal-soft);
}

.contact-form .btn {
  margin-top: 0.4rem;
  width: fit-content;
}

.site-footer {
  background: linear-gradient(180deg, #103a41 0%, #0d2f35 100%);
  color: #f5ffff;
  margin-top: 2rem;
  padding-top: 2.4rem;
}

.site-footer h3,
.site-footer h4 {
  color: #f5ffff;
}

.footer-icon {
  width: 63px;
  height: auto;
  margin-bottom: 0.6rem;
}

.footer-logo {
  width: min(280px, 100%);
  height: auto;
  margin-bottom: 0.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2.2rem;
  padding-bottom: 1.4rem;
}

.footer-main h3 {
  margin-bottom: 0.6rem;
}

.footer-address,
.footer-phone,
.footer-sec {
  margin: 0 0 0.45rem;
}

.footer-phone a {
  font-weight: 700;
  color: #ffffff;
}

.footer-email {
  margin: 0 0 0.45rem;
}

.footer-email a {
  font-weight: 700;
}

.footer-links-wrap {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 1rem 1.1rem;
}

.footer-inline-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.9rem;
  padding: 0;
  margin: 0.9rem 0 0;
}

.footer-inline-links li {
  margin: 0;
}

.site-footer a {
  color: #aee9e4;
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.site-footer ul {
  padding-left: 1.1rem;
  margin: 0;
}

.site-footer h4 {
  margin-bottom: 0.5rem;
}

.site-footer li {
  margin-bottom: 0.3rem;
}

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.9rem 0 1.3rem;
  font-size: 0.92rem;
  display: flex;
  justify-content: space-between;
}

.legal p {
  margin: 0.15rem 0;
}

@media (max-width: 920px) {
  .hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .desktop-only {
    display: none;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 0.9rem 4%;
    flex-direction: column;
    display: none;
  }

  .main-nav.is-open {
    display: flex;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

}
