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

body {
  background: linear-gradient(150deg, #e0f2fe, #f0f9ff);
  background-attachment: fixed;
  min-height: 100vh;
  font-family: 'Outfit', sans-serif;
  color: #555;
  line-height: 1.65;
  font-size: 16px;
}

h1, h2, h3, .site-logo {
  font-family: 'Fraunces', serif;
  color: #0a0a0a;
  font-weight: 700;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 1.5rem; }

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

/* Cookie Banner */
.cookie-banner {
  padding: 14px 0;
  font-size: 14px;
  color: #555;
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner p {
  flex: 1;
  min-width: 200px;
}

.cookie-banner a {
  color: #0369a1;
  text-decoration: none;
}

.cookie-banner a:hover {
  text-decoration: underline;
}

.cookie-btn {
  background: #0369a1;
  color: #fff;
  border-radius: 2px;
  padding: 8px 20px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  transition: opacity 0.2s;
}

.cookie-btn:hover {
  opacity: 0.85;
}

.hidden {
  display: none;
}

/* Navbar */
.navbar {
  padding: 16px 0;
  background: transparent;
}

.navbar .container {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-logo {
  font-size: 1.25rem;
  text-decoration: none;
  color: #0a0a0a;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  color: #0369a1;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Sections */
.section {
  padding: 72px 0;
}

/* Hero */
.hero-grid {
  display: flex;
  align-items: center;
  gap: 48px;
}

.hero-text {
  flex: 0 0 60%;
}

.hero-visual {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-icon {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(3, 105, 161, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-icon svg {
  width: 80px;
  height: 80px;
  color: #0369a1;
}

.hero-text h1 {
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-text p {
  margin-bottom: 24px;
  font-size: 17px;
  max-width: 520px;
}

.btn {
  display: inline-block;
  background: #0369a1;
  color: #fff;
  border-radius: 2px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.85;
  text-decoration: none;
  color: #fff;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

/* Card */
.card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.card p {
  font-size: 15px;
}

/* About */
.about-content {
  max-width: 800px;
}

.about-content p {
  margin-top: 16px;
}

/* Contact */
.contact-wrapper {
  max-width: 560px;
  margin: 0 auto;
}

.contact-card {
  padding: 32px;
}

.contact-info {
  margin-bottom: 24px;
  text-align: center;
}

.contact-info p {
  font-size: 15px;
  margin-bottom: 4px;
}

.contact-heading {
  text-align: center;
  margin-bottom: 4px;
}

.contact-subtitle {
  text-align: center;
  margin-bottom: 24px;
  color: #999;
  font-size: 15px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0369a1;
  box-shadow: 0 0 0 2px rgba(3, 105, 161, 0.125);
}

.btn-submit {
  width: 100%;
  padding: 10px;
  background: #0369a1;
  color: #fff;
  border: none;
  border-radius: 2px;
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-submit:hover {
  opacity: 0.85;
}

.success-message {
  text-align: center;
  color: #0369a1;
  font-weight: 500;
  margin-top: 16px;
  font-size: 15px;
}

/* Footer */
.footer {
  text-align: center;
  color: #999;
  padding: 32px 0;
  font-size: 14px;
}

.footer-links {
  margin-top: 8px;
}

.footer-links a {
  color: #0369a1;
  text-decoration: none;
  font-size: 14px;
}

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

.footer-sep {
  margin: 0 6px;
  color: #ccc;
}

/* Legal / Extra pages */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 72px 0;
}

.page-content h1 {
  margin-bottom: 24px;
}

.page-content h2 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.page-content p {
  margin-bottom: 14px;
}

.page-content ul {
  margin-bottom: 14px;
  padding-left: 24px;
}

.page-content li {
  margin-bottom: 6px;
}

/* Steps list */
.steps-list {
  list-style: none;
  padding-left: 0;
  counter-reset: step;
}

.steps-list li {
  counter-increment: step;
  margin-bottom: 24px;
  padding-left: 40px;
  position: relative;
}

.steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: #0369a1;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
}

.steps-list li strong {
  display: block;
  color: #0a0a0a;
  margin-bottom: 4px;
}

/* Knowledge base / news */
.kb-heading {
  max-width: 800px;
  margin-bottom: 32px;
}

.kb-heading h1 {
  margin-bottom: 12px;
}

.news-section {
  margin-bottom: 48px;
}

.news-section-title {
  font-size: 1.25rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.article-category {
  display: inline-block;
  background: rgba(3, 105, 161, 0.1);
  color: #0369a1;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.article-meta {
  font-size: 13px;
  color: #999;
  margin: 6px 0 10px;
}

.hero-text .article-category {
  margin-bottom: 12px;
}

.kb-card h3 {
  margin-bottom: 6px;
  line-height: 1.35;
}

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }

  .navbar .container {
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-links {
    gap: 16px;
  }

  .hero-grid {
    flex-direction: column;
    gap: 32px;
  }

  .hero-text {
    flex: 1 1 100%;
  }

  .hero-visual {
    flex: 1 1 100%;
  }

  .hero-icon {
    width: 140px;
    height: 140px;
  }

  .hero-icon svg {
    width: 56px;
    height: 56px;
  }

  .contact-card {
    padding: 24px;
  }

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

.footer-contact {
  margin-bottom: 6px;
}
.footer-contact a {
  color: #0369a1;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}

.form-consent {
  text-align: left;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.4;
  cursor: pointer;
  color: #555;
}
.consent-label input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}
.consent-label a {
  color: #0369a1;
}
