:root {
  --primary: #1a5f7a;
  --primary-dark: #134559;
  --secondary: #57c5b6;
  --accent: #f7a325;
  --text-dark: #2c3e50;
  --text-light: #5a6c7d;
  --bg-light: #f8fafc;
  --bg-warm: #fff9f0;
  --bg-cool: #eef6f9;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 20px rgba(26, 95, 122, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 95, 122, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
}

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

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 { font-size: 2.75rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.1rem; margin-bottom: 1.25rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }

p { margin-bottom: 1.25rem; }

.ad-disclosure {
  background-color: var(--bg-cool);
  padding: 8px 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}

header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

.logo span {
  color: var(--secondary);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

nav a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width var(--transition);
}

nav a:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  margin: 5px 0;
  transition: var(--transition);
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-dark);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 720px;
}

.hero-content h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1.25rem;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.92;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #e5941f;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary);
}

.section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--bg-light);
}

.section-warm {
  background-color: var(--bg-warm);
}

.section-cool {
  background-color: var(--bg-cool);
}

.section-dark {
  background-color: var(--primary-dark);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.editorial-block {
  margin-bottom: 3rem;
}

.editorial-block p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.editorial-image {
  margin: 2.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--bg-cool);
}

.editorial-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.editorial-image-caption {
  padding: 12px 16px;
  background-color: var(--bg-light);
  font-size: 0.9rem;
  color: var(--text-light);
}

.split-section {
  display: flex;
  gap: 60px;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
}

.split-image {
  flex: 1;
  background-color: var(--bg-cool);
  border-radius: var(--radius);
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 64px;
  height: 64px;
  background-color: var(--bg-cool);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary);
}

.service-content {
  flex: 1;
}

.service-content h3 {
  margin-bottom: 0.5rem;
}

.service-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.service-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1;
  min-width: 280px;
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.card:hover {
  transform: translateY(-4px);
}

.card-image {
  height: 200px;
  background-color: var(--bg-cool);
}

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

.card-body {
  padding: 24px;
}

.card-body h3 {
  font-size: 1.25rem;
}

.testimonial {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  border-left: 4px solid var(--secondary);
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--text-light);
}

.form-container {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-checkbox input {
  width: auto;
  margin-top: 4px;
}

.form-checkbox label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.95rem;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 48px;
  border-radius: var(--radius);
  text-align: center;
}

.cta-box h3 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.cta-box p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.inline-cta {
  background-color: var(--bg-warm);
  padding: 24px 32px;
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0;
}

.inline-cta p {
  margin: 0;
  font-weight: 500;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 64px;
  padding: 48px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  color: var(--text-light);
  margin-top: 8px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.benefit-icon {
  width: 28px;
  height: 28px;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
}

.benefit-text {
  font-size: 1.05rem;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.team-member {
  text-align: center;
  max-width: 280px;
}

.team-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  background-color: var(--bg-cool);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-role {
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: var(--bg-cool);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

.contact-details h4 {
  margin-bottom: 4px;
}

.contact-details p {
  color: var(--text-light);
  margin: 0;
}

footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 64px 0 24px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.disclaimer {
  background-color: var(--bg-light);
  padding: 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 48px;
  border-left: 3px solid var(--border);
}

.references {
  background-color: var(--bg-light);
  padding: 32px;
  border-radius: var(--radius);
  margin-top: 48px;
}

.references h4 {
  margin-bottom: 16px;
}

.references ol {
  padding-left: 20px;
}

.references li {
  margin-bottom: 8px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.references a {
  word-break: break-all;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-accept {
  background-color: var(--primary);
  color: var(--white);
  border: none;
}

.cookie-accept:hover {
  background-color: var(--primary-dark);
}

.cookie-reject {
  background-color: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border);
}

.cookie-reject:hover {
  border-color: var(--text-dark);
}

.thanks-container {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.thanks-content {
  max-width: 600px;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.thanks-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--white);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px;
}

.legal-content h1 {
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
}

.page-header {
  background-color: var(--primary);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-header p {
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }

  .hero-content h1 { font-size: 2.5rem; }

  .split-section {
    flex-direction: column;
    gap: 40px;
  }

  .split-section.reverse {
    flex-direction: column;
  }

  .stats-row {
    flex-wrap: wrap;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    display: none;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }

  .hero {
    min-height: 420px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .section {
    padding: 56px 0;
  }

  .service-card {
    flex-direction: column;
    text-align: center;
  }

  .service-icon {
    margin: 0 auto;
  }

  .inline-cta {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .container,
  .container-narrow {
    padding: 0 16px;
  }

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

  .btn {
    width: 100%;
  }

  .form-container {
    padding: 24px;
  }

  .cta-box {
    padding: 32px 24px;
  }
}
