@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --secondary: #f0f9ff;
  --text: #334155;
  --text-light: #64748b;
  --bg: #ffffff;
  --bg-light: #f8fafc;
  --border: #e2e8f0;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background-color: var(--bg);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
}

.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 16px 0;
}

@media (min-width: 993px) {
  html,
  body {
    overflow-x: visible;
  }

  .site-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    align-self: flex-start;
    width: 100%;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-line1 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 24px;
}

.nav-list a {
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-list a:hover {
  color: var(--primary);
}

.ad-notice {
  background: var(--secondary);
  color: var(--primary-dark);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--border);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
}

.hero-section {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--bg) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: #0f172a;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
}

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

.btn-outline:hover {
  background: var(--secondary);
}

.full-width {
  width: 100%;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
}

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

.section {
  padding: 48px 0;
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-tag {
  display: block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-2-aligned {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.grid-2-aligned.reverse {
  direction: rtl;
}

.grid-2-aligned.reverse > * {
  direction: ltr;
}

.card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

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

.service-card img {
  width: 100%;
  height: 200px;
  margin-bottom: 16px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 16px;
}

.center-btn {
  text-align: center;
  margin-top: 32px;
}

.image-block {
  position: relative;
}

.floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: white;
  padding: 12px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--primary-dark);
}

.check-list {
  list-style: none;
  margin: 24px 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text);
}

.check-list i {
  color: var(--primary);
}

.info-widget {
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-widget i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.steps-list {
  margin: 32px 0;
}

.step {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-card .stars {
  color: #fbbf24;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
}

.author {
  display: flex;
  flex-direction: column;
}

.author strong {
  color: #0f172a;
}

.author span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.form-wrapper {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

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

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

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  max-width: 18px;
  padding: 0;
  margin: 2px 0 0;
  flex-shrink: 0;
  cursor: pointer;
}

.checkbox-group label {
  display: block;
  margin-bottom: 0;
  line-height: 1.5;
  flex: 1;
  font-weight: 400;
  font-size: 0.9rem;
}

.faq-wrapper {
  padding: 0 24px;
}

.faq-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 48px 0 24px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col .logo-line1 {
  color: white;
}

.footer-desc {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
}

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

.footer-col p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
}

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

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 24px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 16px;
  line-height: 1.5;
}

.copyright {
  font-size: 0.85rem;
  color: #64748b;
  text-align: center;
}

.page-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--bg) 100%);
  padding: 64px 0;
  text-align: center;
}

.service-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.service-detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.service-detail-item.reverse {
  direction: rtl;
}

.service-detail-item.reverse > * {
  direction: ltr;
}

.service-image img {
  width: 100%;
  height: 300px;
}

.step-card {
  text-align: center;
}

.step-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 16px;
}

.info-box {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow);
}

.info-box p {
  margin-bottom: 16px;
}

.info-box p:last-child {
  margin-bottom: 0;
}

.instructions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.instruction-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.instruction-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.instruction-card h3 i {
  color: var(--primary);
}

.contact-info-block {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.info-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.info-row i {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: 4px;
}

.hours-block {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hours-list {
  list-style: none;
  margin-top: 16px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--border);
}

.thanks-page {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--bg) 100%);
}

.thanks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 48px 20px;
}

.thanks-container {
  background: white;
  padding: 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.thanks-logo {
  margin: 0 auto 24px;
}

.thanks-text {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--text);
}

@media (max-width: 992px) {
  .grid-3, .grid-4, .grid-2-aligned, .service-detail-item, .footer-grid, .instructions-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 32px;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-stats {
    justify-content: center;
  }

  .grid-2-aligned.reverse {
    direction: ltr;
  }

  .service-detail-item.reverse {
    direction: ltr;
  }

  .site-header {
    position: static;
  }

  .header-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding-bottom: 8px;
  }

  .logo {
    flex: none;
    justify-content: center;
    width: 100%;
  }

  .logo a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .header-inner .logo a img {
    margin: 0 auto;
    display: block;
  }

  .header-inner .logo a span {
    text-align: center;
  }

  .ad-notice {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
  }

  .main-nav {
    display: block;
    width: 100%;
    border-top: 1px solid var(--border);
    margin-top: 0;
    padding-top: 8px;
  }

  .nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 8px;
    overflow-x: visible;
    padding: 0;
  }

  .nav-list li {
    flex-shrink: 0;
  }

  .nav-list a {
    display: block;
    padding: 6px 10px;
    white-space: normal;
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .hero-grid > *,
  .grid-2-aligned > *,
  .service-detail-item > * {
    min-width: 0;
    max-width: 100%;
  }
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e293b;
  color: #cbd5e1;
  padding: 16px 20px;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

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

.cookie-content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1;
}

.cookie-content a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

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

.btn-cookie-decline {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid #475569;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.btn-cookie-decline:hover {
  border-color: #94a3b8;
}

@media (max-width: 640px) {
  .footer-col .logo a {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-col {
    word-break: break-all;
  }

  .footer-col .logo a span {
    word-break: break-all;
    min-width: 0;
    flex: 1;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cookie-buttons {
    width: 100%;
  }

  .btn-cookie-accept,
  .btn-cookie-decline {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .hero-section {
    padding: 40px 0;
  }

  .section {
    padding: 32px 0;
  }

  .form-wrapper {
    padding: 20px 16px;
  }

  .thanks-container {
    padding: 32px 16px;
  }

  .legal-wrapper {
    padding: 24px 16px;
  }

  .article-wrapper {
    padding: 24px 16px;
  }

  h1 {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    max-width: 100%;
  }

  button[type="submit"],
  .btn.full-width {
    width: 100%;
    max-width: 100%;
  }

  .nav-list {
    gap: 2px 6px;
  }

  .nav-list a {
    padding: 5px 8px;
    font-size: 0.78rem;
  }

  .footer-grid {
    gap: 24px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}
.article-section {
  padding: 64px 0;
}

.article-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}

.article-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius) 0 0 var(--radius);
}

.article-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.article-category {
  background: var(--secondary);
  color: var(--primary-dark);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-wrapper h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 24px;
  line-height: 1.3;
}

.article-body {
  margin-bottom: 32px;
}

.article-lead {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.7;
}

.article-body p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--text);
}

.article-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-size: 1rem;
  color: #0f172a;
  margin-bottom: 2px;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .article-wrapper {
    padding: 32px 24px;
  }
  
  .article-meta {
    flex-direction: column;
    gap: 8px;
  }
}

.legal-wrapper {
  max-width: 820px;
  margin: 0 auto;
  background: white;
  padding: 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}

.legal-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius) 0 0 var(--radius);
}

.legal-meta {
  margin-bottom: 24px;
}

.legal-updated {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary-dark);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--border);
  letter-spacing: 0.3px;
}

.last-updated {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.legal-wrapper h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #0f172a;
  margin-bottom: 24px;
  line-height: 1.2;
}

.legal-body {
  color: var(--text);
  line-height: 1.8;
  word-break: break-word;
}

.legal-body p {
  margin-bottom: 20px;
}

.legal-body strong {
  color: #0f172a;
}

.legal-body ul {
  padding-left: 24px;
  margin-bottom: 20px;
}

.legal-body ul li {
  margin-bottom: 8px;
  list-style: disc;
}

.legal-body a {
  color: var(--primary);
  text-decoration: none;
}

.legal-body a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .legal-wrapper {
    padding: 32px 20px;
  }
}

.footer-legal .footer-links li {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.footer-legal .footer-links a {
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-legal .footer-links a:hover {
  color: var(--primary);
}

.footer-updated {
  font-size: 0.65rem;
  color: #94a3b8;
  font-weight: 400;
  letter-spacing: 0.2px;
  margin-top: 1px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-legal .footer-links li:hover .footer-updated {
  opacity: 1;
}

@media (max-width: 992px) {
  .footer-grid {
    gap: 32px;
  }
  .footer-legal .footer-links li {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
  }
  .footer-updated {
    font-size: 0.6rem;
  }
}

@media (max-width: 480px) {
  .footer-legal .footer-links li {
    flex-direction: column;
    gap: 2px;
  }
}