/* :root {
      --primary-color: #0066cc;
      --secondary-color: #f8fbff;
      --accent-color: #00a8ff;
      --text-dark: #2c3e50;
      --text-muted: #6c757d;
      --gradient-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      --shadow-light: 0 4px 20px rgba(0, 102, 204, 0.1);
      --shadow-hover: 0 10px 40px rgba(0, 102, 204, 0.2);
    } */

    :root {
      --primary-green: #2E7D32;
      --light-green: #4CAF50;
      --soft-green: #E8F5E8;
      --accent-green: #66BB6A;
      --text-dark: #1B1B1B;
      --text-muted: #666666;
      --white: #FFFFFF;
      --light-gray: #F8F9FA;
      --border-light: #E0E0E0;
      --success: #28a745;
      --warning: #ffc107;
    }

    * {
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      line-height: 1.6;
      color: var(--text-dark);
      background-color: var(--white);
    }

    
  #cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 30, 30, 0.9);
    color: #fff;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
    display: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    max-width: 320px;
    text-align: center;
    z-index: 1000;
    animation: fadeIn 0.4s ease;
  }

  #cookie-banner p {
    margin: 0 0 8px 0;
    line-height: 1.4;
  }

  #cookie-banner button {
    background: #00b894;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.2s ease;
  }

  #cookie-banner button:hover {
    background: #019870;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, 10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
  }

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.2s ease;
}
p, a, li {
    font-weight: 400;
}

.card-title{
  margin-bottom: 1rem;
}
    /* .top-bar {
      background: linear-gradient(135deg, var(--primary-green), var(--light-green));
      color: var(--white);
      font-size: 0.875rem;
    } */

    .navbar {
      background: var(--white) !important;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar-brand {
      font-weight: 700;
      color: var(--primary-green) !important;
      font-size: 1.5rem;
    }

    /* Hero with strong value proposition */
    .hero-section {
      background: linear-gradient(135deg, var(--primary-green), var(--light-green));
      min-height: 85vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero-content {
      color: var(--white);
      z-index: 2;
    }

    .hero-badge {
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 50px;
      padding: 8px 20px;
      font-size: 0.9rem;
      display: inline-block;
      margin-bottom: 20px;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .hero-subtitle {
      font-size: 1.3rem;
      margin-bottom: 30px;
      opacity: 0.95;
    }

    .value-points {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin: 30px 0;
    }

    .value-point {
      display: flex;
      align-items: center;
      gap: 15px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      padding: 15px;
      border-radius: 15px;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .value-icon {
      width: 50px;
      height: 50px;
      background: var(--white);
      color: var(--primary-green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .cta-buttons {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 40px;
    }

    .btn-primary-cta {
      background: var(--white);
      color: var(--primary-green);
      font-weight: 600;
      padding: 18px 40px;
      border: none;
      border-radius: 50px;
      font-size: 1.1rem;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .btn-primary-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
      color: var(--primary-green);
    }

    .btn-secondary-cta {
      background: transparent;
      color: var(--white);
      border: 2px solid var(--white);
      font-weight: 600;
      padding: 16px 35px;
      border-radius: 50px;
      font-size: 1.1rem;
      transition: all 0.3s ease;
    }

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

    /* Social proof section */
    .social-proof {
      background: var(--white);
      padding: 60px 0;
      box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    }

    .proof-item {
      text-align: center;
      padding: 20px;
    }

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

    .proof-label {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-top: 5px;
    }

    /* Benefits section with icons */
    .benefits-section {
      padding: 80px 0;
      background: var(--light-gray);
    }

    .benefit-card {
      background: var(--white);
      padding: 40px 30px;
      border-radius: 20px;
      text-align: center;
      height: 100%;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }

    .benefit-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
      border-color: var(--light-green);
    }

    .benefit-icon {
      width: 80px;
      height: 80px;
      background: var(--soft-green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
      font-size: 2rem;
      color: var(--primary-green);
    }

    /* Testimonials */
    .testimonials-section {
      padding: 80px 0;
      background: var(--white);
    }

   .testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.rating i {
  color: #ffc107;
  font-size: 1.1rem;
}

.testimonial-content {
  font-style: italic;
  color: #444;
  line-height: 1.5;
  margin: 12px 0 16px;
  flex-grow: 1;
}

.author-name {
  font-weight: 600;
  color: #222;
  margin: 0;
  text-align: right;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 20px;
  }
}

    /* Comparison table */
    .comparison-section {
      padding: 80px 0;
      background: var(--soft-green);
    }

    .comparison-table {
      background: var(--white);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .comparison-header {
      background: var(--primary-green);
      color: var(--white);
      padding: 25px;
      text-align: center;
    }

    .comparison-row {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      border-bottom: 1px solid var(--border-light);
    }

    .comparison-cell {
      padding: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .comparison-cell.feature {
      justify-content: flex-start;
      font-weight: 500;
    }

    .comparison-cell.korea {
      background: var(--soft-green);
      font-weight: 600;
      color: var(--primary-green);
    }

    .check-icon {
      color: var(--success);
      font-size: 1.3rem;
    }

    .cross-icon {
      color: #dc3545;
      font-size: 1.3rem;
    }

    /* Lead form with qualification */
    .lead-form-section {
      /* background: linear-gradient(135deg, var(--primary-green), var(--light-green)); */
      background-image:  linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./img/Gyeongbokgung.jpg');
      background-size: cover; /* масштабирует изображение, чтобы покрывало весь блок */
      background-position: center; /* центрирует изображение */
      background-repeat: no-repeat;
      padding: 80px 0;
      color: var(--white);
    }

    .form-card {
      background: var(--white);
      padding: 40px;
      border-radius: 25px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
      color: var(--text-dark);
    }

    .form-step {
      display: none;
    }

    .form-step.active {
      display: block;
    }

    .form-control {
      border: 2px solid var(--border-light);
      border-radius: 15px;
      padding: 15px 20px;
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .form-control:focus {
      border-color: var(--primary-green);
      box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.1);
    }

    .form-check-input:checked {
      background-color: var(--primary-green);
      border-color: var(--primary-green);
    }

    .btn-form {
      background: linear-gradient(135deg, var(--primary-green), var(--light-green));
      border: none;
      color: var(--white);
      padding: 15px 40px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      width: 100%;
    }

    .btn-form:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
      color: var(--white);
    }

    .form-progress {
      height: 6px;
      background: var(--border-light);
      border-radius: 3px;
      margin-bottom: 30px;
    }

    .form-progress-bar {
      height: 100%;
      background: linear-gradient(135deg, var(--primary-green), var(--light-green));
      border-radius: 3px;
      transition: width 0.3s ease;
    }

    /* Trust indicators */
    .trust-section {
      background: var(--white);
      padding: 60px 0;
    }

    .trust-item {
      text-align: center;
      padding: 20px;
    }

    .trust-icon {
      width: 60px;
      height: 60px;
      background: var(--soft-green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
      font-size: 1.5rem;
      color: var(--primary-green);
    }

    /* Hospital cards with clear CTA */
    .hospitals-section {
      padding: 80px 0;
      background: var(--light-gray);
    }

    .hospital-card {
      background: var(--white);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      height: 100%;
      position: relative;
    }

    .hospital-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .hospital-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    .hospital-tags {
      position: absolute;
      top: 15px;
      left: 15px;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .hospital-tag {
      background: rgba(46, 125, 50, 0.9);
      color: var(--white);
      font-size: 0.75rem;
      font-weight: 500;
      padding: 6px 12px;
      border-radius: 20px;
      backdrop-filter: blur(10px);
    }

    .hospital-tag.specialty {
      background: rgba(76, 175, 80, 0.9);
    }

    .hospital-tag.savings {
      background: rgba(255, 193, 7, 0.9);
      color: var(--text-dark);
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--primary-green);
      text-align: center;
      margin-bottom: 1rem;
    }

    .section-subtitle {
      font-size: 1.2rem;
      color: var(--text-muted);
      text-align: center;
      max-width: 700px;
      margin: 0 auto 4rem;
    }

    .nav-link {
    color: #555555;
    }

    .news-section {
      padding: 80px 0;
      background: var(--light-gray);
    }

    .footer {
      background: #fafafa;
      color: #333;
      border-top: 1px solid #ddd;
      padding-top: 60px;
      font-family: "Inter", system-ui, sans-serif;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 16px;
      color: #000;
    }

    .footer p {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.6;
    }

    .social {
      display: flex;
      gap: 10px;
      /* margin-top: 20px; */
    }

    .social a {
      width: 38px;
      height: 38px;
      border: 1px solid #ccc;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #2E7D32;
      transition: all 0.2s ease;
      background-color: white;
    }
    .social a i {
      font-size: 1.5rem;
    }
    .social a:hover {
      border-color: rgba(46, 125, 50, 0.9);
      color: rgba(46, 125, 50, 0.9);
    }

    .contact-item {
      margin-bottom: 12px;
    }

    .contact-item strong {
      display: block;
      color: #000;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .contact-item a {
      color: var(--primary-green);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .contact-item a:hover {
      color: rgba(46, 125, 50, 0.9);
    }

    .email {
      display: block;
      color: var(--primary-green);
      text-decoration: none;
      margin-top: 8px;
      transition: color 0.2s ease;
    }

    .email:hover {
      color: rgba(46, 125, 50, 0.9);
    }

    .footer-bottom {
      border-top: 1px solid #e0e0e0;
      padding: 20px 0;
      font-size: 0.9rem;
      color: #777;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .footer-bottom a {
      color: #999;
      text-decoration: none;
    }

    .footer-bottom a:hover {
      color: rgba(46, 125, 50, 0.9);
    }

    @media (max-width: 768px) {
      .footer-grid {
        gap: 30px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
      }
    }
  
    /* Responsive design */
    @media (max-width: 768px) {
      .hero-title {
        font-size: 2.5rem;
        margin-top: 50px;
      }

      .value-points {
        grid-template-columns: 1fr;
      }

      .cta-buttons {
        flex-direction: column;
      }

      .comparison-row {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .comparison-cell {
        border-bottom: 1px solid var(--border-light);
      }
    }

    /* Animation classes */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .pulse {
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.05);
      }

      100% {
        transform: scale(1);
      }
    }

    .floating {
      animation: floating 3s ease-in-out infinite;
    }

    @keyframes floating {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-10px);
      }
    }