/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #f8f9fa;
}

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

/* Awesome Modern Navbar */
.awesome-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(183, 28, 28, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
}

.awesome-navbar.scrolled {
  background: rgba(183, 28, 28, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transform: translateY(0);
  box-shadow: 0 8px 32px rgba(183, 28, 28, 0.4);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 100001;
}

/* Brand Section */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.brand-icon {
  position: relative;
  width: 45px;
  height: 45px;
}

.icon-layers {
  position: relative;
  width: 100%;
  height: 100%;
}

.layer {
  position: absolute;
  border-radius: 50%;
  animation: pulse-layers 3s ease-in-out infinite;
}

.layer-1 {
  top: 0;
  left: 0;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #b71c1c, #d32f2f);
  animation-delay: 0s;
}

.layer-2 {
  top: 5px;
  left: 5px;
  width: 35px;
  height: 35px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.1)
  );
  animation-delay: 0.5s;
}

.layer-3 {
  top: 15px;
  left: 15px;
  width: 15px;
  height: 15px;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
  animation-delay: 1s;
}

@keyframes pulse-layers {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.brand-text h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #b71c1c;
  margin: 0;
  line-height: 1;
  transition: all 0.3s ease;
}

.awesome-navbar.scrolled .brand-text h1 {
  color: white;
}

.tagline {
  font-size: 0.7rem;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.awesome-navbar.scrolled .tagline {
  color: rgba(255, 255, 255, 0.8);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  text-decoration: none;
  color: #2c3e50;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.awesome-navbar.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

.link-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(183, 28, 28, 0.1),
    rgba(183, 28, 28, 0.2)
  );
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.nav-link:hover .link-bg,
.nav-link.active .link-bg {
  opacity: 1;
  transform: scale(1);
}

.awesome-navbar.scrolled .link-bg {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.2)
  );
}

.nav-link:hover {
  transform: translateY(-2px);
  color: #b71c1c;
}

.awesome-navbar.scrolled .nav-link:hover {
  color: white;
}

.link-icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.nav-link:hover .link-icon {
  transform: scale(1.2);
}

/* Dropdown Styles */
.nav-dropdown {
  position: relative;
  z-index: 100000;
}

.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 16px;
  padding: 12px;
  min-width: 200px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(183, 28, 28, 0.2);
  z-index: 999999;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: #2c3e50;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.9rem;
}

.dropdown-link:hover {
  background: rgba(183, 28, 28, 0.1);
  color: #b71c1c;
  transform: translateX(4px);
}

.drop-icon {
  font-size: 1rem;
}

/* Nav Extras */
.nav-extras {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(183, 28, 28, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  background: rgba(183, 28, 28, 0.2);
  transform: rotate(180deg);
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 180px;
  padding: 8px 40px 8px 12px;
  border: 1px solid rgba(183, 28, 28, 0.3);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #2c3e50;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.awesome-navbar.scrolled .search-input {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.search-input::placeholder {
  color: rgba(44, 62, 80, 0.6);
}

.awesome-navbar.scrolled .search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.search-input:focus {
  outline: none;
  border-color: #b71c1c;
  box-shadow: 0 0 0 3px rgba(183, 28, 28, 0.2);
}

.search-btn {
  position: absolute;
  right: 8px;
  border: none;
  background: none;
  font-size: 1rem;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.search-btn:hover {
  transform: scale(1.1);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background: #b71c1c;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.awesome-navbar.scrolled .hamburger-line {
  background: white;
}

/* Background Effects */
.nav-bg-effects {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(183, 28, 28, 0.3);
  border-radius: 50%;
  animation: float-particles 8s linear infinite;
}

.bg-particle:nth-child(1) {
  left: 20%;
  animation-delay: 0s;
}

.bg-particle:nth-child(2) {
  left: 60%;
  animation-delay: 2s;
}

.bg-particle:nth-child(3) {
  left: 80%;
  animation-delay: 4s;
}

@keyframes float-particles {
  0% {
    transform: translateY(100px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #1a1a1a;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.animated-waves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.animated-waves .svg {
  position: absolute;
  width: 600px;
  height: 300px;
  fill: none;
}

.animated-waves .svg:nth-child(1) {
  top: 20%;
  left: -10%;
  opacity: 0.4;
  filter: blur(40px);
  animation: mist-float-1 8s ease-in-out infinite;
}

.animated-waves .svg:nth-child(2) {
  top: 40%;
  right: -15%;
  opacity: 0.3;
  filter: blur(50px);
  animation: mist-float-2 12s ease-in-out infinite reverse;
}

.animated-waves .svg path {
  d: path("M0,150 C200,50 400,250 600,150");
  stroke: rgb(183, 28, 28);
  stroke-width: 150;
  stroke-linecap: round;
}

@keyframes mist-float-1 {
  0%,
  100% {
    transform: translateX(0) translateY(0) scale(1);
    opacity: 0.4;
  }
  25% {
    transform: translateX(20px) translateY(-10px) scale(1.1);
    opacity: 0.3;
  }
  50% {
    transform: translateX(-15px) translateY(15px) scale(0.9);
    opacity: 0.5;
  }
  75% {
    transform: translateX(10px) translateY(-5px) scale(1.05);
    opacity: 0.2;
  }
}

@keyframes mist-float-2 {
  0%,
  100% {
    transform: translateX(0) translateY(0) scale(1);
    opacity: 0.3;
  }
  33% {
    transform: translateX(-25px) translateY(20px) scale(1.2);
    opacity: 0.2;
  }
  66% {
    transform: translateX(30px) translateY(-15px) scale(0.8);
    opacity: 0.4;
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23b71c1c" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></g></svg>')
    repeat;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(183, 28, 28, 0.1);
  color: #b71c1c;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.badge-icon {
  font-size: 1.1rem;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  color: #b71c1c;
  position: relative;
}

.hero-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #b71c1c, #d32f2f);
  border-radius: 2px;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #b71c1c;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #666666;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn {
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: #b71c1c;
  color: white;
  border: 2px solid #b71c1c;
  box-shadow: 0 4px 16px rgba(183, 28, 28, 0.3);
}

.btn-primary:hover {
  background: #8e1415;
  border-color: #8e1415;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(183, 28, 28, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #b71c1c;
  border: 2px solid #b71c1c;
}

.btn-secondary:hover {
  background: #b71c1c;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(183, 28, 28, 0.3);
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #666666;
  font-size: 0.95rem;
}

.feature-item i {
  color: #b71c1c;
  width: 16px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
  position: relative;
  z-index: 2;
}

.card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.country-flags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.flag {
  font-size: 2rem;
}

.vs {
  font-weight: 700;
  color: #b71c1c;
  font-size: 1.1rem;
}

.comparison-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.swiss-item,
.uk-item {
  font-weight: 600;
  font-size: 0.9rem;
}

.swiss-item {
  color: #d32f2f;
}

.uk-item {
  color: #1976d2;
}

.arrow {
  color: #666666;
  font-size: 1.1rem;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(183, 28, 28, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b71c1c;
  font-size: 1.2rem;
  animation: float 3s ease-in-out infinite;
}

.floating-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-2 {
  top: 60%;
  right: 15%;
  animation-delay: 1s;
}

.floating-3 {
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Country Sections */
.country-section {
  padding: 80px 0;
}

.alt-bg {
  background-color: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.section-header h2 i {
  margin-right: 10px;
  color: #e74c3c;
}

.section-header p {
  font-size: 1.1rem;
  color: #7f8c8d;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Animated Card Styles */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  max-width: 340px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: 1s all;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -30%;
  width: 120px;
  height: 120px;
  background: #b71c1c;
  filter: blur(70px);
  border-radius: 50%;
  transition: width 1s, height 1s;
}

.card::before {
  content: "";
  position: absolute;
  bottom: -160%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: #b71c1c;
  filter: blur(70px);
  border-radius: 50%;
  transition: width 1s, height 1s;
}

.card:hover::before {
  bottom: -230%;
  width: 1000px;
  height: 1000px;
  filter: blur(1px);
}

.containers {
  position: relative;
  width: 100%;
}

.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: #ffeaea;
  font-size: 24px;
  color: #b71c1c;
}

.card:hover .icon {
  background: #b71c1c;
  color: white;
  transition: 1s all;
}

.card:hover .icon svg,
.card:hover .linkMore svg {
  filter: brightness(0) invert(1);
  transition: 1s all;
}

.title {
  color: #1a1a1a;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  white-space: nowrap;
  transition: 1s all;
  margin: 1rem 0;
}

.subtitle {
  color: #666666;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  transition: 1s all;
}

.linkMore {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.8rem;
  color: #b71c1c;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  text-decoration: none;
  transition: 1s all;
  margin-top: 1rem;
}

.linkMore svg {
  width: 18px;
  height: 19px;
}

.card:hover .title,
.card:hover .subtitle,
.card:hover .linkMore {
  color: #fff;
  transition: 1s all;
}

/* Utility Classes */
.my-3 {
  margin: 1rem 0;
}

.mt-3 {
  margin-top: 1rem;
}

.o-hidden {
  overflow: hidden;
}

/* Features Section */
.features-section {
  background: #2c3e50;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.features-section h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature {
  padding: 20px;
}

.feature i {
  font-size: 3rem;
  color: #e74c3c;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.feature p {
  opacity: 0.9;
  line-height: 1.6;
}

/* Footer */
footer {
  background: #34495e;
  color: white;
  padding: 60px 0 20px;
}

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

.footer-section h3 {
  color: #e74c3c;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.footer-section h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #e74c3c;
}

.footer-bottom {
  border-top: 1px solid #4a5f7a;
  padding-top: 20px;
  text-align: center;
  color: #bdc3c7;
}

/* Navbar Responsive Design */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 4px;
  }

  .nav-link {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .search-input {
    width: 140px;
  }
}

@media (max-width: 768px) {
  .nav-menu,
  .nav-extras {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-container {
    padding: 10px 20px;
  }

  .brand-text h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 8px 15px;
  }

  .brand-icon {
    width: 35px;
    height: 35px;
  }

  .layer-1 {
    width: 35px;
    height: 35px;
  }

  .layer-2 {
    width: 25px;
    height: 25px;
  }

  .layer-3 {
    width: 12px;
    height: 12px;
    top: 12px;
    left: 12px;
  }

  .brand-text h1 {
    font-size: 1.3rem;
  }
}

/* Hero Responsive Design */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-title {
    font-size: 3.2rem;
  }

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

  .cta-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-features {
    align-items: center;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 80vh;
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    padding: 14px 24px;
  }

  .visual-card {
    padding: 1.5rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #2c3e50;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

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

  .hero-content h2 {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }
}

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

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

  .hero-content h2 {
    font-size: 1.2rem;
  }

  .country-section {
    padding: 60px 0;
  }

  .features-section {
    padding: 60px 0;
  }

  .comparison-selectors {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .comparison-table {
    grid-template-columns: 1fr;
    gap: 10px;
    background: transparent;
  }

  .comparison-cell {
    border-radius: 8px;
    margin-bottom: 5px;
  }

  .comparison-row.header .comparison-cell:not(:first-child) {
    display: none;
  }

  .takeaways {
    grid-template-columns: 1fr;
  }

  .comparison-tool {
    padding: 20px;
  }

  .glossary-item {
    padding: 20px;
  }

  .glossary-item h3 {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .search-container input {
    padding: 12px 45px 12px 15px;
    font-size: 1rem;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Page Content Styles */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.8;
}

.page-content h1 {
  color: #2c3e50;
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.page-content h2 {
  color: #34495e;
  font-size: 1.8rem;
  margin: 30px 0 20px;
  border-bottom: 2px solid #e74c3c;
  padding-bottom: 10px;
}

.page-content h3 {
  color: #2c3e50;
  font-size: 1.4rem;
  margin: 25px 0 15px;
}

.page-content p {
  margin-bottom: 20px;
  color: #555;
}

.page-content ul,
.page-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.page-content li {
  margin-bottom: 10px;
  color: #555;
}

.info-box {
  background: #f8f9fa;
  border-left: 4px solid #e74c3c;
  padding: 20px;
  margin: 30px 0;
  border-radius: 5px;
}

.info-box h4 {
  color: #e74c3c;
  margin-bottom: 10px;
}

.back-btn {
  display: inline-block;
  background: #e74c3c;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-bottom: 30px;
  transition: background-color 0.3s;
}

.back-btn:hover {
  background: #c0392b;
}

/* Comparison Page Styles */
.comparison-tool {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  margin: 40px 0;
}

.comparison-selectors {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 30px;
}

.selector-group {
  display: flex;
  flex-direction: column;
}

.selector-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #2c3e50;
}

.selector-group select {
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  background: white;
  transition: border-color 0.3s;
}

.selector-group select:focus {
  outline: none;
  border-color: #e74c3c;
}

.comparison-result {
  background: white;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e9ecef;
  min-height: 100px;
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: #dee2e6;
  border-radius: 10px;
  overflow: hidden;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comparison-row {
  display: contents;
}

.comparison-row.header .comparison-cell {
  background: #2c3e50;
  color: white;
  font-weight: 600;
  text-align: center;
}

.comparison-cell {
  background: white;
  padding: 20px;
  display: flex;
  align-items: center;
}

.comparison-cell.switzerland {
  background: #e8f5e8;
  border-left: 4px solid #28a745;
}

.comparison-cell.uk {
  background: #e8f2ff;
  border-left: 4px solid #007bff;
}

.detailed-comparison {
  margin: 50px 0;
}

.detailed-comparison h3 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #e74c3c;
}

.takeaways {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.takeaway-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #e74c3c;
}

.takeaway-card h3 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.takeaway-card h3 i {
  color: #e74c3c;
  margin-right: 10px;
}

.takeaway-card p {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Glossary Styles */
.search-section {
  margin: 30px 0;
  text-align: center;
}

.search-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.search-container input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  font-size: 1.1rem;
  border: 2px solid #e9ecef;
  border-radius: 50px;
  outline: none;
  transition: border-color 0.3s;
}

.search-container input:focus {
  border-color: #e74c3c;
}

.search-container i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #7f8c8d;
  font-size: 1.2rem;
}

.glossary-container {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.glossary-item {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #e74c3c;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glossary-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.glossary-item h3 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-tag {
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-tag.swiss {
  background: #d4edda;
  color: #155724;
}

.category-tag.uk {
  background: #cce7ff;
  color: #004085;
}

.category-tag.general {
  background: #f8f9fa;
  color: #495057;
  border: 1px solid #dee2e6;
}

.glossary-item p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Active navigation link */
.nav-link.active {
  background-color: #e74c3c;
  color: white !important;
}

/* Inline link styles */
.inline-link {
  color: #2980b9;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dotted #2980b9;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.inline-link:hover {
  color: #1e3799;
  background-color: rgba(41, 128, 185, 0.1);
  padding: 2px 4px;
  border-radius: 3px;
  border-bottom: 1px solid #1e3799;
}

.inline-link i {
  font-size: 0.9em;
}
