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

body {
  background: linear-gradient(200deg, #fbcfe8, #fdf2f8);
  background-attachment: fixed;
  min-height: 100vh;
  font-family: 'IBM Plex Sans', sans-serif;
  color: #444;
  line-height: 1.65;
  font-size: 16px;
}

h1, h2, h3, .site-logo {
  font-family: 'Crimson Pro', serif;
  color: #1a1a1a;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
}

h2 {
  font-size: 1.75rem;
  font-weight: 700;
}

h3 {
  font-weight: 700;
}

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

/* Cookie Banner */
.cookie-banner {
  background: rgba(255,255,255,0.92);
  padding: 14px 0;
  font-size: 14px;
  display: flex;
}

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

.cookie-banner p {
  margin: 0;
  color: #555;
}

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

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

.cookie-banner-btn {
  background: #db2777;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 8px 20px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  transition: opacity 0.2s;
  white-space: nowrap;
}

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

.cookie-hidden {
  display: none;
}

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

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.35rem;
  color: #1a1a1a;
  text-decoration: none;
}

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

.nav-links a {
  text-transform: uppercase;
  font-size: 13px;
  color: #444;
  text-decoration: none;
  letter-spacing: 0.5px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #db2777;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  margin: 5px 0;
  transition: transform 0.2s;
}

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

/* Hero */
.hero-content {
  max-width: 60%;
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-content p {
  margin-bottom: 28px;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  background: #db2777;
  color: #fff;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  transition: opacity 0.2s;
  text-decoration: none;
}

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

/* Cards */
.card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.2s;
}

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

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

.services-grid .card h3 {
  margin-bottom: 10px;
}

.services-grid .card p {
  color: #555;
  line-height: 1.7;
}

/* Contact */
.contact-info {
  text-align: center;
  margin-bottom: 28px;
}

.contact-info p {
  color: #555;
  margin-bottom: 4px;
}

.contact-info a {
  color: #db2777;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 32px;
}

.contact-card h2 {
  margin-bottom: 6px;
}

.contact-card .subtitle {
  color: #777;
  margin-bottom: 24px;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: #db2777;
  box-shadow: 0 0 0 2px rgba(219, 39, 119, 0.125);
}

.btn-submit {
  width: 100%;
  padding: 10px;
  background: #db2777;
  color: #fff;
  border: none;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 8px;
}

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

.success-message {
  display: none;
  color: #15803d;
  text-align: center;
  margin-top: 16px;
  font-weight: 500;
}

.success-message.visible {
  display: block;
}

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

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #db2777;
  text-decoration: none;
  margin: 0 8px;
}

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

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

.page-content h1 {
  margin-bottom: 24px;
  font-size: 2.25rem;
}

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

.page-content h3 {
  margin-top: 24px;
  margin-bottom: 8px;
}

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

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

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

.page-content a {
  color: #db2777;
  text-decoration: none;
}

.page-content a:hover {
  text-decoration: underline;
}

/* Sitemap list */
.sitemap-list {
  list-style: none;
  padding-left: 0;
}

.sitemap-list li {
  margin-bottom: 10px;
}

/* Process steps */
.process-steps {
  counter-reset: step;
  margin-top: 32px;
}

.process-step {
  padding-left: 48px;
  position: relative;
  margin-bottom: 32px;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  background: #db2777;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  font-family: 'IBM Plex Sans', sans-serif;
}

.process-step h3 {
  margin-bottom: 6px;
}

.process-step p {
  color: #555;
}

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

.about-text p {
  margin-bottom: 14px;
  line-height: 1.7;
}

/* Section headings */
.section-heading {
  margin-bottom: 8px;
}

/* 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.4rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.article-category {
  display: inline-block;
  background: rgba(219, 39, 119, 0.1);
  color: #db2777;
  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;
}

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

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

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

  h2 {
    font-size: 1.4rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 56px;
    right: 20px;
    background: rgba(255,255,255,0.96);
    padding: 20px 28px;
    border-radius: 8px;
    gap: 16px;
    z-index: 100;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .navbar .container {
    position: relative;
  }

  .contact-card {
    padding: 24px;
  }

  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .page-content {
    padding: 32px 20px;
  }

  .process-step {
    padding-left: 42px;
  }
}

.footer-contact {
  margin-bottom: 8px;
}
.footer-contact a {
  color: #db2777;
  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: #db2777;
}
