:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --secondary: #172554;
  --accent: #f97316;
  --accent-dark: #ea580c;
  --light: #f8fafc;
  --dark: #0f172a;
  --gray: #64748b;
  --gray-light: #f1f5f9;
  --text: #1e293b;
  --danger: #ef4444;
  --success: #10b981;
  --border-radius: 8px;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --container: 1200px;
  --header-height: 80px;
}

/* Base styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.5;
  background-color: var(--light);
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--secondary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1.25rem;
}

p, ol {
  margin-bottom: 1.5rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 500;
}

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

.subtitle {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
  display: inline-block;
  position: relative;
}

.subtitle::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--primary), transparent);
}

/* Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: var(--shadow);
  z-index: 1000;
  height: var(--header-height);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-list a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.nav-list a.active {
  color: var(--primary);
  font-weight: 600;
}

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

/* Mobile navigation */
@media (max-width: 992px) {
  .nav-list {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 2rem;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
    z-index: 999;
  }
  
  .nav-list.active {
    transform: translateY(0);
  }
  
  .mobile-menu-btn {
    display: block;
  }
}

/* Language selector */
.language-selector {
  position: relative;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem;
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 150px;
  background-color: white;
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  padding: 0.5rem;
  display: none;
  z-index: 1001;
}

.language-dropdown.show {
  display: block;
}

.language-dropdown button {
  display: block;
  width: 100%;
  padding: 0.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  border-radius: calc(var(--border-radius) - 4px);
}

.language-dropdown button:hover {
  background-color: var(--gray-light);
}

.language-dropdown button.selected {
  font-weight: 600;
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

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

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

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

.btn-secondary:hover {
  background-color: var(--gray-light);
}

.btn-accent {
  background-color: var(--accent);
  color: white;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(249, 115, 22, 0.5);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-icon i {
  font-size: 1rem;
}

/* Hero section */
.hero {
  padding: calc(var(--header-height) + 4rem) 0 6rem;
  background: linear-gradient(to bottom, #f0f9ff, #e0f2fe);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
  position: relative;
  flex: 1;
  z-index: 2;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content .lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hero-image {
  flex: 1;
  max-width: 45%;
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

/* Hero decorative elements */
.hero-decoration {
  position: absolute;
  right: -10%;
  top: 5%;
  width: 60%;
  height: 120%;
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.7), rgba(199, 210, 254, 0.7));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  transform: rotate(-5deg);
  z-index: 0;
  opacity: 0.8;
}

/* Benefit cards for hero section */
.benefits-card {
  flex: 0 0 45%;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  margin-left: 2rem;
  z-index: 1;
}

.benefits-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

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

.benefits-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.benefits-list li i {
  color: var(--success);
  font-size: 1.25rem;
}

.highlight {
  color: var(--accent);
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: rgba(249, 115, 22, 0.2);
  z-index: -1;
  transform: rotate(-1deg);
}

/* Features section */
.section {
  padding: 5rem 0;
}

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

.section-header h2 {
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-header p {
  color: #64748b;
  font-size: 1.125rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

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

.feature-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
}

/* Problem section */
.problem-section {
  background-color: var(--secondary);
  color: white;
  padding: 5rem 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.problem-section .section-header h2,
.problem-section .section-header .subtitle {
  color: white;
}

.problem-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

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

.problem-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  border-left: 4px solid var(--accent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.problem-card h3 {
  margin-bottom: 1rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.problem-card p {
  color: rgba(255, 255, 255, 0.9);
}

.problem-decoration {
  position: absolute;
  top: -80px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(59, 130, 246, 0.05));
  border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
  z-index: 0;
}

.problem-decoration-2 {
  position: absolute;
  bottom: -200px;
  left: 10%;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.07), rgba(59, 130, 246, 0.03));
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  z-index: 0;
  transform: rotate(-15deg);
}

/* Solution section styles */
.solution-section {
  background-color: #f8fafc;
  padding-top: 6rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
}

/* Process steps grid styling - fixing the layout */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}

/* Flip Card Styles - fixing the card sizing and positioning */
.flip-card {
  background-color: transparent;
  perspective: 1000px;
  height: 450px; /* Fixed height for consistent sizing */
  width: 100%;
  position: relative;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s, scale 0.6s;
  transform-style: preserve-3d;
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
}

.flip-card-inner.flipped {
  transform: rotateY(180deg) scale(1.05);
  z-index: 10;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: var(--border-radius);
  background-color: white;
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
}

.flip-card-front {
  color: var(--text);
  z-index: 2;
}

.flip-card-back {
  background-color: white;
  color: var(--text);
  transform: rotateY(180deg);
  z-index: 1;
  overflow-y: auto; /* Allow scrolling for overflowing content */
}

/* Fix for process step numbers positioning on both front and back sides */
.flip-card-front .process-step::before,
.flip-card-back .process-step::before {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

/* Add extra padding to the card titles to prevent overlap with numbers */
.flip-card-back .process-step h3 {
  position: relative;
  padding-left: 40px;  /* Increased left padding to avoid overlap with the number */
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
  z-index: 1;
  text-align: left;   /* Change to left alignment since we have padding on the left */
}

/* Adjust number positioning on the back side specifically */
.flip-card-back .process-step::before {
  position: absolute;
  top: -20px;             /* Adjust to be level with the title */
  left: -15px;        /* Move it a bit more to the left */
  width: 40px;        /* Slightly smaller on the back side */
  height: 40px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

/* Ensure the title is positioned properly below the number on both sides */
.flip-card-front .process-step h3,
.flip-card-back .process-step h3 {
  position: relative;
  padding-left: 0; /* Remove any potential left padding */
  margin-top: 0; /* Ensure no top margin pushes the title down */
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
  z-index: 1; /* Lower z-index than the number */
  text-align: center;
}

/* Process step styling for front side of cards - removing nested card appearance */
.flip-card-front .process-step {
  background-color: transparent;
  box-shadow: none;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.flip-card-front .process-step h3 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center; /* Center the title for better appearance */
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

/* Fix for front side card hover effects - prevent nested card visibility issues */
.flip-card-front .process-step p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
  color: var(--text);
}

/* Remove any box-shadow or background changes on hover for the process-step */
.flip-card-front .process-step:hover {
  transform: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}

/* Instead apply hover effects to the entire flip-card-inner */
.flip-card:hover .flip-card-inner:not(.flipped) {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Fix icon hover effect to be consistent */
.flip-card-front .step-icon {
  margin-top: auto;
  margin-bottom: 1.5rem;
  align-self: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: none;
}

/* Make the icon hover effect apply from the card hover state */
.flip-card:hover .flip-card-front .step-icon {
  background-color: var(--primary);
  color: white;
  transform: none;
  box-shadow: none;
}

/* Fix for process step numbers positioning */
.process-step::before {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

/* Ensure the title is positioned properly below the number */
.process-step h3 {
  position: relative;
  padding-left: 0; /* Remove any potential left padding */
  margin-top: 0; /* Ensure no top margin pushes the title down */
  margin-bottom: 1rem;
  color: var(--primary-dark);
  z-index: 1; /* Lower z-index than the number */
}

/* Remove hover transform from process-step since we're applying it to the flip-card */
.process-step:hover {
  transform: none;
  box-shadow: none;
}

/* Add hover effect to the flip-card instead */
.flip-card:hover .flip-card-inner:not(.flipped) {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

/* Timeline mini styling to make it cleaner and prevent the card-in-card appearance */
.timeline-mini {
  margin-bottom: 1.5rem;
}

.timeline-item-mini {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 0;
  background-color: transparent;
  box-shadow: none;
}

.timeline-item-mini:last-child {
  margin-bottom: 0;
}

.timeline-icon-mini {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: none;
}

.timeline-content-mini {
  flex-grow: 1;
  background-color: transparent;
  padding: 0;
  box-shadow: none;
}

.timeline-content-mini h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.timeline-content-mini p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--text);
  line-height: 1.5;
}

/* Fix for process step cards to ensure clean appearance */
.process-step {
  padding: 0;
  background-color: transparent;
  box-shadow: none;
}

.flip-card-back .process-step {
  padding: 0;
  background-color: transparent;
  box-shadow: none;
  height: 100%;
}

/* Remove all hover effects from elements inside the back of cards */
.flip-card-back .timeline-item-mini:hover,
.flip-card-back .timeline-icon-mini:hover,
.flip-card-back .timeline-content-mini:hover,
.flip-card-back .process-step:hover {
  transform: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}

/* Ensure timeline items don't have card-like appearance */
.timeline-item-mini {
  border: none;
  background-color: transparent;
  box-shadow: none;
  transition: none;
}

/* Make sure timeline icons don't trigger hover effects */
.timeline-icon-mini {
  transition: none;
}

/* Explicitly override any hover effects on the timeline content */
.timeline-content-mini {
  transition: none;
  border: none;
  background-color: transparent;
}

/* Reset the hover effects inside flipped cards to prevent double effects */
.flip-card-back .process-step:hover {
  transform: none;
  box-shadow: none;
}

/* Ensure icons inside flipped cards don't have unnecessary styling */
.flip-card-back .timeline-icon-mini:hover {
  transform: none;
}

/* Process step content styling with circular numbers */
.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
}

/* Add circular numbers in front of each card */
.process-step::before {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

/* Numbers for each step */
.process-steps .flip-card:nth-child(1) .process-step::before {
  content: "1";
}

.process-steps .flip-card:nth-child(2) .process-step::before {
  content: "2";
}

.process-steps .flip-card:nth-child(3) .process-step::before {
  content: "3";
}

/* Styling for the flip button */
.flip-button {
  margin-top: auto;
  padding: 0.75rem 1.25rem;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.flip-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.flip-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}

/* Responsive adjustments for process steps */
@media (max-width: 992px) {
  .process-steps {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .process-steps {
    gap: 3rem;
  }
  
  .flip-card {
    height: 400px;
  }
}

/* Timeline styling for the back of cards */
.timeline-mini {
  margin-bottom: 1.5rem;
}

.timeline-item-mini {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.timeline-item-mini:last-child {
  margin-bottom: 0;
}

.timeline-icon-mini {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.timeline-content-mini h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.timeline-content-mini p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.solution-decoration {
  position: absolute;
  top: -120px;
  left: -50px;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.05));
  border-radius: 60% 40% 50% 50% / 40% 60% 50% 50%;
  z-index: 0;
  transform: rotate(15deg);
}

.solution-decoration-2 {
  position: absolute;
  bottom: -150px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(59, 130, 246, 0.04));
  border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
  z-index: 0;
  transform: rotate(-10deg);
}

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

.process-step {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.process-step h3 {
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
  font-weight: 700;
  font-size: 1.5rem;
}

.process-step p {
  margin-bottom: 2rem;
  flex-grow: 1;
  color: #4b5563;
  line-height: 1.6;
}

.step-icon {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.process-step:hover .step-icon {
  background-color: var(--primary);
  color: white;
  transform: scale(1.1);
}

/* Responsive adjustments for process steps */
@media (max-width: 768px) {
  .process-steps {
    gap: 2rem;
  }
}

/* Process section */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem 2rem;
  counter-reset: step-counter;
  margin-bottom: 3rem;
}

.process-step {
  position: relative;
  padding-left: 3rem;
}

.process-step::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.process-step h3 {
  margin-bottom: 0.75rem;
}

/* Testimonials section */
.testimonial {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.author-info p {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--gray);
}

/* Benefits and outcomes */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.benefit-card h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.benefit-card h3 i {
  color: var(--success);
}

.risk-card h3 i {
  color: var(--danger);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary), #1e3a8a);
  color: white;
  border-radius: var(--border-radius);
  padding: 3.5rem 2.5rem;
  text-align: center;
  margin: 4rem auto;
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
  transform: rotate(30deg);
  z-index: 0;
}

.cta-section h2,
.cta-section h3 {
  color: white;
}

.cta-section h3 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Team section */
#about {
  background-color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

#about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(203, 213, 225, 0.7), transparent);
}

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

.team-member {
  text-align: center;
}

.team-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 5px solid white;
  transition: all 0.3s ease;
}

.team-member:hover .team-photo {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: #f0f9ff;
}

.team-member h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.team-member p {
  color: #64748b;
  margin-bottom: 1.25rem;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--gray-light);
  border-radius: 50%;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary);
  color: white;
}

.about-decoration {
  position: absolute;
  top: -50px;
  right: 10%;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.6), rgba(199, 210, 254, 0.3));
  border-radius: 30% 70% 50% 50% / 50% 30% 70% 50%;
  z-index: 0;
  transform: rotate(15deg);
}

.about-decoration-2 {
  position: absolute;
  bottom: -100px;
  left: 5%;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.4), rgba(199, 210, 254, 0.2));
  border-radius: 50% 50% 30% 70% / 40% 60% 40% 60%;
  z-index: 0;
  transform: rotate(-10deg);
}

/* Contact section - dark style */
#contact {
  background-color: var(--secondary);
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

#contact .section-header h2,
#contact .section-header .subtitle {
  color: white;
}

#contact .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

#contact .container {
  position: relative;
  z-index: 1;
}

.keyword-highlight {
  color: var(--accent);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.form-section {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: white;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.25);
}

.form-text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.form-error {
  color: #ef4444;
}

.contact-decoration {
  position: absolute;
  top: -150px;
  left: -100px;
  width: 450px;
  height: 450px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(255, 255, 255, 0.05));
  border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
  z-index: 0;
  transform: rotate(25deg);
}

.contact-decoration-2 {
  position: absolute;
  bottom: -200px;
  right: 0;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(255, 255, 255, 0.03));
  border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%;
  z-index: 0;
  transform: rotate(-15deg);
}

/* Footer */
.site-footer {
  background-color: var(--secondary);
  color: white;
  padding: 4rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}

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

.footer-logo {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
  letter-spacing: 0.5px;
}

.footer-heading {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: white;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
  padding: 0.25rem 0;
}

.footer-links a:hover {
  color: white;
  transform: translateX(3px);
}

/* Remove solution from disabled list */
.footer-links li a[href="#process"],
.footer-links li a[href="#benefits"] {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  pointer-events: none;
}

.footer-copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-image-attribution {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-image-attribution a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-image-attribution a:hover {
  color: white;
  text-decoration: underline;
}

.footer-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(15, 23, 42, 0));
  border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
  z-index: 0;
  opacity: 0.5;
  transform: rotate(-10deg);
}

/* Utilities */
.bg-light {
  background-color: var(--gray-light);
}

.text-primary {
  color: var(--primary);
}

.text-accent {
  color: var(--accent);
}

.text-success {
  color: var(--success);
}

.text-danger {
  color: var(--danger);
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

/* Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Blog Highlights Section - light style */
#blog_highlights {
  padding: 5rem 0;
  background-color: white;
  color: var(--text);
  position: relative;
  overflow: hidden;
}

#blog_highlights .section-header h2 {
  color: var(--secondary);
}

#blog_highlights .section-header .subtitle {
  color: var(--primary);
}

#blog_highlights .section-header p {
  color: var(--gray);
}

.blog-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(219, 234, 254, 0.5) 0%, transparent 25%),
    radial-gradient(circle at 80% 60%, rgba(199, 210, 254, 0.5) 0%, transparent 25%);
  z-index: 0;
}

#blog_highlights .container {
  position: relative;
  z-index: 1;
}

#blog_highlights .subtitle::after {
  background: linear-gradient(to right, var(--primary), transparent);
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: white;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.blog-card .blog-image {
  position: relative;
  height: 180px;
  overflow: hidden;
  border-bottom: 4px solid var(--primary);
}

.blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
}

.blog-card-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: white;
}

.blog-card-content p {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.btn-blog-read {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: white;
  color: var(--primary);
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  align-self: flex-start;
  border: none;
}

.btn-blog-read:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

.blog-empty-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  background: var(--gray-light);
  border-radius: var(--border-radius);
}

.blog-decoration {
  position: absolute;
  top: -150px;
  left: 0%;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.05));
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  z-index: 0;
  transform: rotate(10deg);
}

.blog-decoration-2 {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(59, 130, 246, 0.04));
  border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
  z-index: 0;
  transform: rotate(-5deg);
}

/* For single blog case */
@media (min-width: 768px) {
  .blog-cards:has(.blog-card:only-child) {
    grid-template-columns: minmax(300px, 500px);
    justify-content: center;
  }
}

/* Responsive adjustments for blog cards */
@media (max-width: 768px) {
  .blog-cards {
    grid-template-columns: 1fr;
  }
  
  .blog-card {
    max-width: 100%;
  }
}

/* MICE Vision Section */
.mice-vision-section {
  background: linear-gradient(135deg, var(--accent), #fb923c);
  color: white;
  padding: 5rem 0;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

/* Entferne den oberen FarbÃ¼bergang */
.mice-vision-section::before {
  display: none;
}

/* Entferne den unteren FarbÃ¼bergang */
.mice-vision-section::after {
  display: none;
}

.mice-vision-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
}

.vision-statement {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.75rem;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.vision-statement::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: var(--accent);
  margin: 1.75rem auto;
  border-radius: 2px;
}

.vision-challenge {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.mice-vision-decoration {
  position: absolute;
  bottom: -100px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.1));
  border-radius: 70% 30% 50% 50% / 50% 50% 70% 30%;
  z-index: 0;
  transform: rotate(20deg);
}

/* MICE Belief Section */
.mice-belief-section {
  background: linear-gradient(135deg, var(--accent), #fb923c);
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.belief-decoration {
  position: absolute;
  top: -80px;
  right: 10%;
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
  z-index: 0;
  transform: rotate(15deg);
}

.mice-belief-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
}

.belief-statement {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.4;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* Partners Section Styling - Mews.com style */
.partners-section {
  padding: 5rem 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.partners-slider-container {
  width: 100%;
  overflow: hidden;
  margin: 3rem 0;
  position: relative;
  cursor: grab;
}

.partners-slider-container:active {
  cursor: grabbing;
}

.partners-slider {
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
}

.partners-track {
  display: flex;
  transition: transform 0.3s ease-out;
  /* Remove animation from CSS - controlled by JS now */
  animation: none;
}

.partners-track.dragging {
  transition: none; /* Remove transition during active dragging for responsiveness */
}

.partner-logo {
  flex: 0 0 200px;
  height: 80px;
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.65;
  transition: all 0.3s ease;
  user-select: none;
}

.partner-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

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

.partner-logo:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Drag instruction styling */
.partners-drag-instruction {
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 1rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  user-select: none;
}

.partners-slider-container:hover .partners-drag-instruction {
  opacity: 1;
}

/* Navigation arrows for the slider */
.partners-navigation {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 1rem;
}

.partners-nav-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-light);
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text);
}

.partners-nav-btn:hover {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .partner-logo {
    flex: 0 0 140px;
    margin: 0 1rem;
  }
  
  .partner-logo img {
    max-height: 50px;
  }
}

/* Partners Banner - Infinite scroll with momentum */
.partners-banner {
  background-color: rgba(255, 255, 255, 0.9);
  /* border-top: 1px solid rgba(37, 99, 235, 0.1); */
  padding: 2rem 0;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.partners-heading {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.partners-logos-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  cursor: grab;
  touch-action: pan-y; /* Allow vertical touch scrolling but capture horizontal */
}

.partners-logos-container:active {
  cursor: grabbing;
}

.partners-logos {
  display: flex;
  align-items: center;
  width: max-content; /* Allow the container to expand as needed */
  will-change: transform; /* Optimize for animations */
  transition: transform 0.5s cubic-bezier(0.1, 0.82, 0.25, 1);
  /* Remove animation from CSS - it will be controlled by JS now */
  animation: none;
}

.partners-logos.dragging {
  transition: none !important; /* Important to override any transitions during drag */
}

.partners-logos .partner-logo {
  flex: 0 0 auto;
  height: 60px;
  margin: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: all 0.3s ease;
  user-select: none;
}

.partners-logos .partner-logo img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.partners-logos .partner-logo:hover {
  opacity: 1;
}

.partners-logos .partner-logo:hover img {
  filter: grayscale(0%);
}

/* Partners Slider - controlled by JS now */
/* .partners-slider {
  display: flex;
  align-items: center;
  width: max-content; // Allow the container to expand as needed
  animation: scrollPartners 30s linear infinite;
  will-change: transform; // Optimize for animations
  transition: transform 0.5s cubic-bezier(0.1, 0.82, 0.25, 1);
}

.partners-slider.dragging {
  animation-play-state: paused;
  transition: none;
}

@keyframes scrollPartners {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 2rem));
  }
} */

/* Newsletter Section styling */
.newsletter-section {
  position: relative;
  background-color: #f5f8ff;
  padding: 5rem 0;
  overflow: hidden;
}

.newsletter-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 102, 204, 0.05));
  border-radius: 50%;
  transform: translate(50%, -50%);
  z-index: 1;
}

.newsletter-form-container {
  max-width: 700px;
  margin: 2.5rem auto 0;
  padding: 1rem;
  z-index: 2;
  position: relative;
}

.newsletter-form-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.newsletter-input-group {
  flex: 1 1 300px;
  position: relative;
}

.newsletter-input-group input {
  width: 100%;
  padding: 0.8rem 1.2rem;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-input-group input:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.newsletter-submit {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  flex: 0 0 auto;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  background-color: var(--accent-color);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.newsletter-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.2);
}

.newsletter-submit i {
  font-size: 0.9rem;
}

.newsletter-privacy {
  font-size: 0.8rem;
  color: #777;
  margin-top: 1rem;
  text-align: center;
}

.newsletter-privacy a {
  color: var(--primary-color);
  text-decoration: none;
}

.newsletter-privacy a:hover {
  text-decoration: underline;
}

/* Mini Newsletter Section styling - compact one-line design */
.mini-newsletter-section {
  position: relative;
  background-color: #f8fafc;
  padding: 1.5rem 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

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

.mini-newsletter-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  background-color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mini-newsletter-label {
  font-weight: 600;
  color: #4b5563;
  white-space: nowrap;
}

.mini-newsletter-input-group {
  flex: 1;
  min-width: 220px;
  position: relative;
}

.mini-newsletter-input-group input {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 0.95rem;
  background-color: #f9fafb;
  transition: all 0.2s ease;
}

.mini-newsletter-input-group input:focus {
  outline: none;
  border-color: #f97316;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.mini-newsletter-btn {
  background-color: #f97316; /* Orange button */
  color: white;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(249, 115, 22, 0.2);
}

.mini-newsletter-btn:hover {
  background-color: #2563eb; /* Blue on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.25);
}

.mini-newsletter-privacy {
  font-size: 0.75rem;
  color: #6b7280;
  white-space: nowrap;
}

.mini-newsletter-privacy a {
  color: #2563eb;
  text-decoration: none;
}

.mini-newsletter-privacy a:hover {
  text-decoration: underline;
}

/* Mews.com inspired newsletter section */
.modern-newsletter-section {
  background-color: #f2f5fa;
  padding: 4rem 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.modern-newsletter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.newsletter-left {
  flex: 1 1 500px;
}

.newsletter-right {
  flex: 0 0 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.newsletter-left h3,
.newsletter-right h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.newsletter-left p {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
}

.modern-newsletter-form {
  display: flex;
  margin-bottom: 1rem;
  gap: 1rem;
}

.modern-newsletter-input-group {
  flex: 1;
  position: relative;
}

.modern-newsletter-input-group input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.modern-newsletter-input-group input:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.modern-newsletter-btn {
  background-color: #f97316; /* Orange button */
  color: white;
  border: none;
  padding: 0 1.8rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.modern-newsletter-btn:hover {
  background-color: #2563eb; /* Blue on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.25);
}

.modern-newsletter-privacy {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

.modern-newsletter-privacy a {
  color: #2563eb;
  text-decoration: none;
}

.modern-newsletter-privacy a:hover {
  text-decoration: underline;
}

.social-links-row {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  color: #333;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.social-links-row a:hover {
  background-color: #f97316;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(249, 115, 22, 0.2);
  border-color: #f97316;
}

/* Specific social network colors on hover */
.social-links-row a:nth-child(1):hover {
  background-color: #0077b5; /* LinkedIn */
  border-color: #0077b5;
}

.social-links-row a:nth-child(2):hover {
  background-color: #1da1f2; /* Twitter */
  border-color: #1da1f2;
}

.social-links-row a:nth-child(3):hover {
  background-color: #e1306c; /* Instagram */
  border-color: #e1306c;
}

.social-links-row a:nth-child(4):hover {
  background-color: #1877f2; /* Facebook */
  border-color: #1877f2;
}

@media (max-width: 768px) {
  .modern-newsletter-form {
    flex-direction: column;
  }
  
  .modern-newsletter-btn {
    width: 100%;
    padding: 0.9rem 1.2rem;
  }
  
  .newsletter-right {
    width: 100%;
    flex: 1 1 100%;
  }
  
  .social-links-row {
    justify-content: flex-start;
  }
}