:root {
  --deep-navy: #0B1F3B;
  --neon-teal: #00D1C1;
  --pearl-white: #F7F9FC;
  --warm-gray: #8A93A3;
  --accent-coral: #FF5A5F;
  --text-dark: #1B2A3D;
}

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

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

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

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

.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

.site-header {
  background: var(--pearl-white);
  border-bottom: 1px solid #e1e6ef;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo-img {
  height: 50px;
  width: auto;
}

.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  background: var(--deep-navy);
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

.main-nav {
  display: flex;
  gap: 24px;
  font-weight: 600;
}

.main-nav a {
  color: var(--deep-navy);
  transition: color 0.2s ease;
}

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

.menu-close {
  display: none;
}

.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--deep-navy), #142a4a);
  color: #fff;
}

.hero-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #d3d9e2;
}

.hero-tags span {
  display: inline-block;
  background: var(--neon-teal);
  color: var(--deep-navy);
  padding: 6px 10px;
  border-radius: 16px;
  margin-right: 8px;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
}

.small-hero {
  padding: 60px 0;
}

.section {
  padding: 70px 0;
}

.section h2 {
  font-size: 32px;
  color: var(--deep-navy);
  margin-bottom: 20px;
}

.section-intro {
  margin-bottom: 30px;
  color: var(--warm-gray);
}

.deep-bg {
  background: var(--deep-navy);
  color: #fff;
}

.deep-bg h2, .deep-bg h3, .deep-bg h4 {
  color: #fff;
}

.light-bg {
  background: #eef2f8;
}

.two-column {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.features-grid, .formats-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 30px;
}

.feature-card, .format-card {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(11, 31, 59, 0.08);
}

.deep-bg .feature-card {
  background: #142a4a;
  color: #dfe6f0;
}

.service-highlight {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 30px;
}

.process-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.process-steps .step {
  margin-bottom: 20px;
}

.process-image {
  border-radius: 8px;
  overflow: hidden;
}

.format-card img {
  border-radius: 6px;
  margin-bottom: 16px;
}

.faq {
  display: grid;
  gap: 18px;
}

.faq-item {
  background: #142a4a;
  padding: 18px;
  border-radius: 6px;
}

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

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccd4e3;
  border-radius: 4px;
  margin-bottom: 16px;
  font-size: 15px;
  background: #fff;
}

.btn {
  background: var(--accent-coral);
  color: #fff;
  padding: 12px 22px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover {
  background: #ff3f45;
}

.btn-small {
  background: var(--neon-teal);
  border: none;
  color: var(--deep-navy);
  padding: 8px 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
}

.btn-link {
  color: var(--deep-navy);
  font-weight: 600;
  margin-left: 12px;
}

.site-footer {
  background: var(--deep-navy);
  color: #dfe6f0;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-logo {
  height: 100px;
  width: auto;
  margin-bottom: 14px;
}

.footer-nav a, .footer-legal a {
  display: block;
  margin-bottom: 10px;
  color: #dfe6f0;
}

.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid #1e3b66;
  padding-top: 20px;
  text-align: center;
  color: #b9c4d6;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #ccd4e3;
  padding: 14px 20px;
  display: none;
  z-index: 1100;
}

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.legal h1 {
  margin-bottom: 20px;
  color: var(--deep-navy);
}

.legal h2 {
  margin-top: 30px;
  margin-bottom: 12px;
}

.service-detail {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-bottom: 40px;
  align-items: center;
}

.thank-you {
  padding: 100px 0;
  text-align: center;
}

.submission-details {
  margin-top: 20px;
  background: #eef2f8;
  padding: 20px;
  border-radius: 6px;
  text-align: left;
}

@media (max-width: 860px) {
  .menu-icon {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--deep-navy);
    color: #fff;
    flex-direction: column;
    padding: 80px 30px;
    gap: 20px;
    transform: translateX(100%);
    transition: none;
  }

  .main-nav a {
    color: #fff;
    font-size: 20px;
  }

  .menu-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
  }

  .menu-toggle:checked ~ .main-nav {
    transform: translateX(0);
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .section h2 {
    font-size: 26px;
  }

  .hero {
    padding: 60px 0;
  }
}