:root {
  /* Modern UK Color Scheme - Deep Blue, Teal, Coral */
  --primary-color: #0a2463;
  --secondary-color: #3e92cc;
  --accent-color: #ff6b35;
  --bg-light: #f8f9fa;
  --bg-cream: #ffffff;
  --text-dark: #1e1e1e;
  --text-medium: #4a5568;
  --text-light: #718096;
  --border-color: #e2e8f0;
  --white: #ffffff;
  --success-color: #10b981;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-cream);
}

/* UK Hero Section */
.hero-section-uk {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    #1e3a8a 50%,
    var(--secondary-color) 100%
  );
  color: white;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(62, 146, 204, 0.05) 10px,
    rgba(212, 175, 55, 0.03) 20px
  );
  z-index: 1;
}

.hero-content-uk {
  position: relative;
  z-index: 3;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-title-uk {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 3.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  color: var(--white);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.hero-subtitle-uk {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  max-width: 540px;
}

.badge-uk {
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.hero-feature-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.hero-trust {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

.video-container-uk {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border: 3px solid var(--accent-color);
  animation: slideInRight 0.8s ease-out 0.2s both;
}

@keyframes slideInRight {
  0% {
    transform: translateX(60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.video-container-uk video {
  width: 100%;
  height: auto;
  display: block;
}

.video-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(10, 36, 99, 0.9);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 10;
  backdrop-filter: blur(10px);
}

/* UK Section Titles */
.section-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.section-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  color: var(--text-medium);
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.6;
}

/* UK Introduction Section */
.intro-section-uk {
  padding: 80px 0;
  background: var(--bg-cream);
}

.intro-card-uk {
  background: var(--white);
  padding: 4rem;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--accent-color);
  text-align: center;
}

.intro-title-uk {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

.intro-text-uk {
  font-family: "Inter", sans-serif;
  font-size: 1.15rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.intro-stats-uk {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid var(--border-color);
}

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

.stat-number-uk {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--secondary-color);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label-uk {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* UK Cards */
.card-uk {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  overflow: hidden;
  background: var(--white);
  border-left: 4px solid var(--accent-color);
}

.card-uk:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-left-color: var(--secondary-color);
}

.card-uk .card-body {
  padding: 2.5rem;
}

.card-uk .card-title {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.card-uk .card-text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* UK Feature Icons */
.feature-icon-uk {
  width: 90px;
  height: 90px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent-color);
  font-size: 2.2rem;
  box-shadow: 0 8px 20px rgba(139, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.feature-icon-uk:hover {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 12px 30px rgba(139, 0, 0, 0.35);
}

/* UK Buttons */
.btn-uk-primary {
  background: var(--secondary-color);
  border: none;
  border-radius: 8px;
  padding: 16px 42px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: white;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
  display: inline-block;
  text-decoration: none;
}

.btn-uk-primary:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 33, 71, 0.4);
  color: white;
}

.btn-uk-secondary {
  background: transparent;
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  padding: 14px 40px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-uk-secondary:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.video-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

/* UK Problem Section */
.problem-section-uk {
  background: var(--bg-light);
  padding: 90px 0;
}

.problem-item-uk {
  text-align: center;
  padding: 2.5rem;
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.problem-item-uk:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-color);
}

.problem-icon-uk {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), #f4d03f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--primary-color);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
}

.problem-item-uk h4 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.problem-item-uk p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* UK Testimonial Section */
.testimonial-section-uk {
  background: var(--white);
  padding: 90px 0;
}

.testimonial-card-uk {
  background: var(--bg-cream);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: left;
  margin-bottom: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card-uk::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: var(--accent-color);
  opacity: 0.2;
  font-family: "Playfair Display", serif;
  line-height: 1;
}

.testimonial-card-uk:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.testimonial-text-uk {
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.testimonial-author-uk {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 1rem;
}

.testimonial-location-uk {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.3rem;
}

.testimonial-rating-uk {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a5f 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.advertorial-badge {
  background: var(--accent-color);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 2rem;
}

/* UK Navigation */
.navbar-uk {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  padding: 1.2rem 0;
  border-bottom: 3px solid var(--accent-color);
}

.navbar-brand {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--primary-color) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.5px;
}

.brand-icon {
  font-size: 1.8rem;
}

.navbar-uk .nav-link {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark) !important;
  padding: 0.5rem 1.2rem !important;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.navbar-uk .nav-link:hover {
  color: var(--secondary-color) !important;
}

.btn-nav-cta {
  background: var(--secondary-color) !important;
  color: var(--white) !important;
  border-radius: 6px;
  padding: 0.6rem 1.5rem !important;
  margin-left: 1rem;
  font-weight: 600;
}

.btn-nav-cta:hover {
  background: var(--primary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

/* UK Responsive Design */
@media (max-width: 992px) {
  .hero-title-uk {
    font-size: 3rem;
  }

  .intro-stats-uk {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title-uk {
    font-size: 2.2rem;
  }

  .hero-subtitle-uk {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .intro-card-uk {
    padding: 2.5rem 1.5rem;
  }

  .intro-stats-uk {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-uk-primary {
    width: 100%;
    text-align: center;
  }

  .navbar-uk .nav-link {
    padding: 0.8rem 1rem !important;
  }

  .btn-nav-cta {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-title-uk {
    font-size: 1.8rem;
  }

  .intro-title-uk {
    font-size: 1.8rem;
  }

  .stat-number-uk {
    font-size: 2rem;
  }
}

.stats-section {
  background: white;
  padding: 60px 0;
}

.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--primary-color);
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.image-gallery {
  padding: 80px 0;
  background: var(--secondary-color);
}

.gallery-item {
  margin-bottom: 2rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  padding: 1.5rem;
  background: white;
}

.gallery-caption h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.gallery-caption p {
  color: var(--text-light);
  margin: 0;
}

.comparison-section {
  background: var(--secondary-color);
  padding: 80px 0;
}

.comparison-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.comparison-image {
  max-width: 200px;
  height: auto;
  margin: 0 auto 1rem;
  display: block;
}

.trust-section {
  background: white;
  padding: 60px 0;
}

.trust-logo {
  max-height: 60px;
  width: auto;
  margin: 1rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.trust-logo:hover {
  opacity: 1;
}

.stat-highlight {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 1rem;
}

.stat-highlight .stat-number {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-highlight .stat-text {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.innovation-content {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-box {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: white;
  padding: 1.5rem;
  border-radius: 15px;
  margin: 2rem 0;
  text-align: center;
}

.highlight-box h4 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.location-info {
  background: var(--secondary-color);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 1.5rem;
}

.spec-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  height: 100%;
}

.spec-card h4 {
  color: var(--primary-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.problem-detail-card {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  border-left: 4px solid var(--accent-color);
}

.problem-detail-card h4 {
  color: var(--primary-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.problem-detail-card p {
  color: var(--text-dark);
  margin: 0;
}

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

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.expert-testimonial {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 2rem;
}

.expert-image {
  margin-bottom: 1.5rem;
}

.expert-image img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.expert-content h4 {
  color: var(--primary-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.expert-title {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1rem;
}

.expert-quote {
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
}

.step-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

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

.step-number {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.step-card h4 {
  color: var(--primary-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-icon {
  background: var(--accent-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.benefit-card h4 {
  color: var(--primary-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: var(--text-dark);
  margin: 0;
}

.health-benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.health-benefit-card:hover {
  transform: translateY(-5px);
}

.health-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.health-benefit-card h4 {
  color: var(--primary-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.health-benefit-card p {
  color: var(--text-dark);
  line-height: 1.6;
}

.research-note {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

.expert-quote-large {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: 2rem 0;
}

.expert-quote-large blockquote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 2rem;
  border: none;
  padding: 0;
}

.expert-quote-large cite {
  font-weight: 600;
  color: var(--primary-color);
  font-style: normal;
}

.strength-feature {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  text-align: center;
}

.strength-feature h3 {
  color: var(--primary-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.strength-feature p {
  color: var(--text-dark);
  line-height: 1.6;
}

.footer-note {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.footer-separator {
  color: #666;
  margin: 0 0.5rem;
}

.footer-campaign {
  font-size: 0.8rem;
  color: #999;
  margin: 0;
}

.problem-solution-card {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-color);
  text-align: center;
}

.problem-solution-card h4 {
  color: var(--primary-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin: 0;
  font-size: 1.1rem;
}

.insurance-info-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.insurance-info-card h3 {
  color: var(--primary-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.insurance-info-card p {
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
}

.company-info-section {
  padding: 80px 0;
  background: white;
}

.company-info-section .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
}

.company-info-section .lead {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.company-stat {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  margin-top: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.company-stat::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: shimmer 3s ease-in-out infinite;
}

.company-stat h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin: 0;
  font-size: 1.6rem;
  position: relative;
  z-index: 2;
}

@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%) translateY(-100%) rotate(30deg);
  }
  50% {
    transform: translateX(100%) translateY(100%) rotate(30deg);
  }
}

.benefit-detail-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-detail-card .benefit-icon {
  background: var(--accent-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.benefit-detail-card h4 {
  color: var(--primary-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-detail-card p {
  color: var(--text-dark);
  margin: 0;
}

.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

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

.stat-card .stat-number {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.stat-card .stat-text {
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.5;
}

.study-reference {
  text-align: center;
  margin-top: 2rem;
}

.study-reference p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

.law-info-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.law-info-card .section-title {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.law-info-card .lead {
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.7;
}

.disclaimer {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
}

.disclaimer p {
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.9;
}

/* Contact Page Styles */
:root {
  --primary-color-contact: #2c3e50;
  --accent-color-contact: #3498db;
  --text-dark-contact: #2c3e50;
  --text-light-contact: #7f8c8d;
  --bg-light-contact: #f8f9fa;
  --white-contact: #ffffff;
  --success-color-contact: #27ae60;
  --error-color-contact: #e74c3c;
}

.contact-section {
  padding: 4rem 0;
}

.contact-form-container {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.form-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: var(--primary-color-contact);
  text-align: center;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
}

.form-control:focus {
  border-color: var(--accent-color-contact);
  box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
  background-color: white;
}

.form-control::placeholder {
  color: var(--text-light-contact);
}

.btn-submit {
  background: linear-gradient(135deg, var(--accent-color-contact), #5dade2);
  color: white;
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  width: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.help-block {
  color: var(--error-color-contact);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.has-error .help-block {
  display: block;
}

.has-error .form-control {
  border-color: var(--error-color-contact);
}

.contact-info-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  text-align: center;
}

.contact-info-card h3 {
  color: var(--primary-color-contact);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-info-card p {
  color: var(--text-dark-contact);
  margin-bottom: 0.5rem;
}

.contact-info-card a {
  color: var(--accent-color-contact);
  text-decoration: none;
  font-weight: 500;
}

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

.phone-number {
  background: linear-gradient(135deg, var(--accent-color-contact), #5dade2);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  transition: transform 0.3s ease;
}

.phone-number:hover {
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

.success-message {
  background: var(--success-color-contact);
  color: white;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  text-align: center;
  display: none;
}

.error-message {
  background: var(--error-color-contact);
  color: white;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  text-align: center;
  display: none;
}

.footer-separator {
  color: #666;
  margin: 0 0.5rem;
}

/* Cookie Policy Styles */
.policy-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.policy-card h3 {
  color: var(--primary-color-contact);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.policy-card h4 {
  color: var(--accent-color-contact);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}

.policy-card p {
  color: var(--text-dark-contact);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.policy-card ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-card li {
  color: var(--text-dark-contact);
  margin-bottom: 0.5rem;
}

.highlight-box {
  background: linear-gradient(135deg, var(--accent-color-contact), #5dade2);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
  text-align: center;
}

.highlight-box h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-info h3 {
  color: var(--primary-color-contact);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-dark-contact);
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: var(--accent-color-contact);
  text-decoration: none;
  font-weight: 500;
}

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

.btn-modern {
  background: linear-gradient(135deg, var(--accent-color-contact), #5dade2);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
  color: white;
  text-decoration: none;
}

/* Disclaimer Styles */
:root {
  --warning-color: #f39c12;
}

.disclaimer-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  border-left: 5px solid var(--warning-color);
}

.disclaimer-card h3 {
  color: var(--primary-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.disclaimer-card h4 {
  color: var(--accent-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}

.disclaimer-card p {
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.disclaimer-card ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.disclaimer-card li {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.warning-box {
  background: linear-gradient(135deg, var(--warning-color), #e67e22);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
  text-align: center;
}

.warning-box h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.important-notice {
  background: #fff3cd;
  border: 2px solid var(--warning-color);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
}

.important-notice h4 {
  color: var(--warning-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Privacy Policy Styles */
.policy-card h3 {
  color: var(--primary-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.policy-card h4 {
  color: var(--accent-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}

.policy-card p {
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.policy-card ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-card li {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.highlight-box {
  background: linear-gradient(135deg, var(--accent-color), #ff8c69);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
  text-align: center;
}

.highlight-box h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Return Policy Styles */
:root {
  --success-color: #27ae60;
}

.process-step {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  border-left: 4px solid var(--success-color);
  display: flex;
  align-items: center;
}

.step-number {
  background: var(--success-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1rem;
  flex-shrink: 0;
}

.highlight-box {
  background: linear-gradient(135deg, var(--success-color), #2ecc71);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
  text-align: center;
}

.highlight-box h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

  .contact-form-container {
    padding: 2rem;
  }

  .form-title {
    font-size: 1.5rem;
  }

  .policy-card {
    padding: 1.5rem;
  }

  .disclaimer-card {
    padding: 1.5rem;
  }

  .process-step {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

/* U
K Video Container Styles */
.video-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--border-color);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

/* UK CTA Section */
.cta-section-uk {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section-uk::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(212, 175, 55, 0.05) 20px,
    rgba(212, 175, 55, 0.05) 40px
  );
}

.cta-title-uk {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.cta-subtitle-uk {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  position: relative;
  z-index: 2;
}

.cta-button-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* UK Footer */
.footer-uk {
  background: var(--primary-color);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 30px;
  border-top: 4px solid var(--accent-color);
}

.footer-uk h5 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-uk a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-uk a:hover {
  color: var(--accent-color);
}

.footer-bottom-uk {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
}

/* UK Benefit Cards */
.benefit-card-uk {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  border-top: 3px solid var(--accent-color);
}

.benefit-card-uk:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.benefit-card-uk h4 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.benefit-card-uk p {
  font-family: "Inter", sans-serif;
  color: var(--text-medium);
  line-height: 1.7;
  margin: 0;
}

/* UK Stats Section */
.stats-section-uk {
  background: var(--bg-cream);
  padding: 80px 0;
}

.stat-box-uk {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.stat-box-uk:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
}

.stat-box-uk .stat-number {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--secondary-color);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-box-uk .stat-label {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--text-medium);
  font-weight: 500;
}

/* UK Trust Badges */
.trust-section-uk {
  background: var(--white);
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.trust-badge-uk {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.trust-badge-uk:hover {
  opacity: 1;
}

.trust-badge-uk img {
  max-height: 50px;
  width: auto;
}

/* UK Process Steps */
.process-section-uk {
  background: var(--bg-light);
  padding: 90px 0;
}

.process-step-uk {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
  position: relative;
  padding-left: 5rem;
  transition: all 0.3s ease;
}

.process-step-uk:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-number-uk {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
}

.process-step-uk h4 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.process-step-uk p {
  font-family: "Inter", sans-serif;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.6;
}

/* UK Footer Enhancements */
.footer-uk ul.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-uk ul.footer-menu li {
  margin-bottom: 0.8rem;
}

.footer-uk ul.footer-menu li a {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-uk ul.footer-menu li a:hover {
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-note-uk {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-bottom: 1rem;
}

.footer-links-uk {
  font-size: 0.9rem;
}

.footer-links-uk a {
  padding: 0 0.5rem;
}

.footer-disclaimer-uk {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

/* UK Gallery Section */
.gallery-section-uk {
  background: var(--bg-cream);
  padding: 90px 0;
}

.gallery-grid-uk {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item-uk {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: var(--white);
}

.gallery-item-uk:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item-uk img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item-uk:hover img {
  transform: scale(1.05);
}

.gallery-caption-uk {
  padding: 1.5rem;
}

.gallery-caption-uk h4 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.gallery-caption-uk p {
  font-family: "Inter", sans-serif;
  color: var(--text-medium);
  margin: 0;
  font-size: 0.95rem;
}

/* UK Comparison Section */
.comparison-section-uk {
  background: var(--white);
  padding: 90px 0;
}

.comparison-grid-uk {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.comparison-card-uk {
  background: var(--bg-cream);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.comparison-card-uk:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.comparison-card-uk.featured {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border: 3px solid var(--accent-color);
}

.comparison-card-uk.featured h4,
.comparison-card-uk.featured p {
  color: white;
}

.comparison-card-uk img {
  max-width: 200px;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
}

.comparison-card-uk h4 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.comparison-card-uk p {
  font-family: "Inter", sans-serif;
  color: var(--text-medium);
  margin: 0;
}

/* UK Feature List */
.feature-list-uk {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.feature-list-uk li {
  padding: 1rem 0;
  padding-left: 2.5rem;
  position: relative;
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-color);
}

.feature-list-uk li:last-child {
  border-bottom: none;
}

.feature-list-uk li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.5rem;
  width: 30px;
  height: 30px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* UK Accent Box */
.accent-box-uk {
  background: linear-gradient(135deg, var(--accent-color), #f4d03f);
  color: var(--primary-color);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  margin: 3rem 0;
}

.accent-box-uk h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.accent-box-uk p {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  margin: 0;
}

/* UK Info Box */
.info-box-uk {
  background: var(--bg-light);
  border-left: 4px solid var(--secondary-color);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.info-box-uk h4 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.info-box-uk p {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  margin: 0;
}

/* Additional UK Styles */
.cta-title-uk {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-subtitle-uk {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: rgba(255,255,255,0.9);
}

.cta-button-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.expert-quote-large {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: center;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color);
}

.expert-quote-large blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 2rem;
    border: none;
    padding: 0;
}

.expert-quote-large cite {
    font-weight: 600;
    color: var(--secondary-color);
    font-style: normal;
}

.strength-feature {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    text-align: center;
    border-top: 3px solid var(--accent-color);
}

.strength-feature h3 {
    color: var(--primary-color);
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.strength-feature p {
    color: var(--text-dark);
    line-height: 1.6;
}

.btn-lg {
    padding: 18px 48px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .cta-button-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-lg {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-title-uk {
        font-size: 2.2rem;
    }
}
/* ===
== PREMIUM NAVIGATION STYLES ===== */
.navbar-premium {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(62, 146, 204, 0.1);
}

.navbar-premium.scrolled {
  padding: 0.5rem 0;
  background: rgba(255, 255, 255, 0.98);
}

.navbar-brand-premium {
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(62, 146, 204, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.brand-country {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-info {
  display: flex;
  gap: 2rem;
  margin-right: 2rem;
}

.nav-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.nav-contact-item i {
  color: var(--secondary-color);
  font-size: 1rem;
}

.navbar-toggler-premium {
  border: none;
  background: none;
  padding: 0.5rem;
  display: none;
  flex-direction: column;
  gap: 3px;
  cursor: pointer;
}

@media (max-width: 991px) {
  .navbar-toggler-premium {
    display: flex;
  }
}

.navbar-toggler-premium span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-link-premium {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem !important;
  color: var(--text-dark) !important;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin: 0 0.25rem;
}

.nav-link-premium:hover {
  background: rgba(62, 146, 204, 0.1);
  color: var(--secondary-color) !important;
  transform: translateY(-2px);
}

.nav-link-premium i {
  font-size: 0.9rem;
  opacity: 0.7;
}

.btn-nav-premium {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: white !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 25px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 1rem;
  box-shadow: 0 4px 15px rgba(62, 146, 204, 0.3);
}

.btn-nav-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(62, 146, 204, 0.4);
  color: white !important;
}

/* ===== PREMIUM HERO STYLES ===== */
.hero-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%233E92CC" opacity="0.3"/><circle cx="80" cy="40" r="1.5" fill="%23FF6B35" opacity="0.2"/><circle cx="40" cy="80" r="1" fill="%230A2463" opacity="0.4"/></svg>');
  animation: float 20s ease-in-out infinite;
}

.hero-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(10, 36, 99, 0.05) 0%, 
    rgba(62, 146, 204, 0.03) 50%, 
    rgba(255, 107, 53, 0.05) 100%);
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content-premium {
  position: relative;
  z-index: 3;
  animation: slideInLeft 0.8s ease-out;
}

.hero-badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.badge-premium {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.badge-premium.featured {
  background: linear-gradient(135deg, var(--accent-color), #ff8c69);
  color: white;
}

.badge-premium.nhs {
  background: linear-gradient(135deg, var(--success-color), #34d399);
  color: white;
}

.hero-title-premium {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.title-highlight {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-accent {
  color: var(--accent-color);
  display: block;
  font-size: 0.8em;
  margin-top: 0.5rem;
}

.hero-subtitle-premium {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-features-premium {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.feature-premium {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-premium:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon-premium {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-text strong {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1rem;
}

.feature-text span {
  font-family: 'Inter', sans-serif;
  color: var(--text-light);
  font-size: 0.9rem;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(62, 146, 204, 0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(62, 146, 204, 0.4);
  color: white;
}

.btn-hero-secondary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: var(--primary-color);
  padding: 1rem 2rem;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.hero-trust-premium {
  border-top: 2px solid rgba(62, 146, 204, 0.1);
  padding-top: 2rem;
}

.trust-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.trust-item strong {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.trust-item span {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-light);
}

.hero-media-premium {
  position: relative;
  z-index: 3;
  animation: slideInRight 0.8s ease-out 0.2s both;
}

.media-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  border: 3px solid var(--accent-color);
}

.media-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(10, 36, 99, 0.9);
  color: var(--accent-color);
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 10;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
}

.media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.media-container:hover .media-overlay {
  opacity: 1;
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
  background: white;
}

.hero-product-showcase {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-color), #ff8c69);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.highlight-text {
  display: flex;
  flex-direction: column;
}

.highlight-text strong {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: var(--primary-color);
}

.highlight-text span {
  font-family: 'Inter', sans-serif;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== PREMIUM FOOTER STYLES ===== */
.footer-premium {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color) 0%, #001a3d 100%);
  color: white;
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
  fill: var(--bg-cream);
}

.footer-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 0;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.logo-icon-footer {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.brand-text-footer {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name-footer {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: white;
}

.brand-country-footer {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-awards {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.award-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.award-item i {
  color: var(--accent-color);
}

.footer-heading {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-menu-premium {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-premium li {
  margin-bottom: 0.75rem;
}

.footer-menu-premium a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.footer-menu-premium a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-menu-premium i {
  font-size: 0.8rem;
  opacity: 0.7;
}

.contact-info-premium {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-details strong {
  color: white;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-details span {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}

.newsletter-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.newsletter-form {
  margin-bottom: 2rem;
}

.newsletter-form .input-group {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-form .form-control {
  border: none;
  padding: 0.75rem 1.25rem;
  font-family: 'Inter', sans-serif;
  background: rgba(255, 255, 255, 0.9);
}

.newsletter-form .form-control:focus {
  box-shadow: none;
  background: white;
}

.btn-newsletter {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border: none;
  padding: 0.75rem 1.25rem;
  color: white;
  transition: all 0.3s ease;
}

.btn-newsletter:hover {
  transform: scale(1.05);
}

.social-media-premium {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-link-premium {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link-premium.facebook { background: #1877f2; }
.social-link-premium.twitter { background: #1da1f2; }
.social-link-premium.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link-premium.linkedin { background: #0077b5; }
.social-link-premium.youtube { background: #ff0000; }

.social-link-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  color: white;
}

.footer-bottom-premium {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  margin-top: 3rem;
}

.footer-legal {
  display: flex;
  align-items: center;
}

.medical-notice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

.medical-notice i {
  color: var(--accent-color);
}

.footer-links-premium {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-links-premium a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.copyright {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .navbar-info {
    display: none;
  }
  
  .hero-title-premium {
    font-size: 2.8rem;
  }
  
  .hero-features-premium {
    gap: 1rem;
  }
  
  .trust-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-title-premium {
    font-size: 2.2rem;
  }
  
  .hero-subtitle-premium {
    font-size: 1.1rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    justify-content: center;
    width: 100%;
  }
  
  .hero-badges {
    justify-content: center;
  }
  
  .trust-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-links-premium {
    justify-content: center;
    margin-top: 1rem;
  }
  
  .social-media-premium {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-title-premium {
    font-size: 1.8rem;
  }
  
  .brand-name {
    font-size: 1.2rem;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
}


/* ===== PREMIUM COMPANY INFO SECTION ===== */
.company-info-premium {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
  position: relative;
  overflow: hidden;
}

.company-info-premium::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(62, 146, 204, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.company-image-wrapper {
  position: relative;
  z-index: 2;
}

.image-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.circle-1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  top: -30px;
  left: -30px;
  animation: float 6s ease-in-out infinite;
}

.circle-2 {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-color), #ff8c69);
  bottom: -20px;
  right: -20px;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.company-image-container {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border: 4px solid white;
}

.company-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.company-image-container:hover .company-image {
  transform: scale(1.05);
}

.image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.25rem 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: slideInUp 0.8s ease-out 0.5s both;
}

@keyframes slideInUp {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.badge-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), #ff8c69);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.badge-content {
  display: flex;
  flex-direction: column;
}

.badge-content strong {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary-color);
  line-height: 1;
}

.badge-content span {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-top: 0.25rem;
}

.company-content-premium {
  padding-left: 2rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(62, 146, 204, 0.3);
}

.section-label i {
  font-size: 1rem;
}

.company-title-premium {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.title-highlight-premium {
  display: block;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.1em;
}

.company-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.company-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.company-feature-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
}

.company-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-top-color: var(--accent-color);
}

.feature-number {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.feature-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-medium);
  font-weight: 500;
}

.company-highlight-box {
  background: linear-gradient(135deg, var(--primary-color), #001a3d);
  padding: 2rem;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 15px 40px rgba(10, 36, 99, 0.2);
  position: relative;
  overflow: hidden;
}

.company-highlight-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(30deg); }
  50% { transform: translateX(100%) translateY(100%) rotate(30deg); }
}

.highlight-icon-large {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.8rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.highlight-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.highlight-content h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.highlight-content p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}

.company-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-company-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(62, 146, 204, 0.3);
}

.btn-company-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(62, 146, 204, 0.4);
  color: white;
}

.btn-company-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: var(--primary-color);
  padding: 1rem 2rem;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* Responsive Design for Company Section */
@media (max-width: 992px) {
  .company-content-premium {
    padding-left: 0;
    margin-top: 3rem;
  }
  
  .company-title-premium {
    font-size: 2.5rem;
  }
  
  .company-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .company-info-premium {
    padding: 60px 0;
  }
  
  .company-title-premium {
    font-size: 2rem;
  }
  
  .company-description {
    font-size: 1rem;
  }
  
  .company-features-grid {
    grid-template-columns: 1fr;
  }
  
  .company-highlight-box {
    flex-direction: column;
    text-align: center;
  }
  
  .highlight-icon-large {
    margin: 0 auto;
  }
  
  .company-cta-group {
    flex-direction: column;
  }
  
  .btn-company-primary,
  .btn-company-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .image-badge {
    left: 20px;
    bottom: 20px;
    padding: 1rem;
  }
  
  .badge-content strong {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .company-title-premium {
    font-size: 1.8rem;
  }
  
  .feature-number {
    font-size: 2rem;
  }
  
  .circle-1,
  .circle-2 {
    display: none;
  }
}
