/* Test Blog CSS - Extracted from test-blog.html */
/* Personal Project Styling for ChoiceMaker Structure */

/* Import Roboto Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap');

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

/* Prevent horizontal scrolling - but allow sticky to work */
html {
  overflow-x: hidden;
  overflow-y: visible;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  font-size: 16px;
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
  max-width: 100vw;
}

/* Mobile: Add padding to body for fixed header */
@media (max-width: 991px) {
  body {
    padding-top: 70px !important;
  }
  
  .hero {
    margin-top: 0 !important;
  }
}

/* Consistent Typography Across All Sections */
h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1f2937;
  margin-bottom: 1rem;
}

h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  color: #222;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  color: #374151;
  margin-bottom: 0.5rem;
}

h5 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
  margin-bottom: 0.5rem;
}

h6 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
  margin-bottom: 0.5rem;
}

p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.25rem;
}

/* Consistent link styling */
a {
  color: #025DBB;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #025DBB;
}

/* Strong and emphasis */
strong {
  font-weight: 600;
  color: #1f2937;
}

em {
  font-style: italic;
}

/* Responsive Typography */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  h4 {
    font-size: 1.15rem;
  }

  h5 {
    font-size: 1.05rem;
  }

  p {
    font-size: 1rem;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(20, 100, 130, 0.9), rgba(30, 140, 170, 0.9)),
              url('/placeholder.svg?height=600&width=1200') center/cover;
  color: white;
  padding: 80px 20px;
  min-height: 500px;
  margin-top: 0; /* Removed margin since body.inner-pages-wrapper already has padding-top */
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 14px;
}

.badge-item {
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 15px;
  border-radius: 20px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 700px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 650px;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Button Styles */
.btn {
  font-family: 'Roboto', sans-serif;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-primary {
  background: #025FBD;
  color: white;
}

.btn-primary:hover {
  background: #025FBD;
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Intro Section */
.intro-section {
  max-width: 100%;
  margin-bottom: 30px;
}

.intro-section p {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
}

.intro-section strong {
  color: #333;
  font-weight: 600;
}

/* CTA Card */
.cta-card {
  max-width: 100%;
  margin-bottom: 30px;
  padding: 30px;
  background: #f5f5f5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-icon {
  font-size: 32px;
  color: #025DBB;
  flex-shrink: 0;
}

.cta-content {
  flex: 1;
}

.cta-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #333;
}

.cta-content p {
  font-size: 15px;
  color: #333;
}

.cta-card .btn {
  flex-shrink: 0;
}

/* Main Content Layout */
.content-wrapper {
  max-width: 1400px;
  margin: 30px auto;
  padding: 0 40px 0 360px; /* Left padding for fixed sidebar space (increased for new position) */
  display: flex;
  gap: 40px;
  align-items: flex-start;
  overflow: visible;
  position: relative;
}

/* Sidebar - Table of Contents - Fixed position, controlled by JS */
.sidebar {
  position: fixed;
  top: 120px; /* Below the fixed header with more margin */
  left: 60px; /* Moved more to the right */
  width: 280px;
  max-height: calc(100vh - 180px); /* Account for top and bottom margins */
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  z-index: 100;
  overflow: hidden; /* Container overflow hidden */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
  transform: translateX(-10px);
}

/* Show sidebar when visible class is added */
.sidebar.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Sidebar header - Clean modern design */
.sidebar h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1a202c;
  padding-bottom: 14px;
  border-bottom: 2px solid #e2e8f0;
  margin-top: 0;
}

.sidebar h3::before {
  content: "";
  width: 4px;
  height: 20px;
  background: linear-gradient(180deg, #025DBB 0%, #0284c7 100%);
  border-radius: 2px;
  animation: none;
}

/* Navigation list */
.sidebar nav {
  overflow-y: auto; /* Enable vertical scrolling */
  max-height: calc(100vh - 280px); /* Account for header, padding, and margins */
  padding-right: 8px; /* Space for scrollbar */
  margin-right: -8px; /* Compensate for padding */
}

/* Stylish Scrollbar for Sidebar */
.sidebar nav::-webkit-scrollbar {
  width: 6px;
}

.sidebar nav::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

.sidebar nav::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #025DBB 0%, #0284c7 100%);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.sidebar nav::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #0247a0 0%, #0369a1 100%);
}

/* Firefox scrollbar styling */
.sidebar nav {
  scrollbar-width: thin;
  scrollbar-color: #025DBB #f1f5f9;
}

.sidebar nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar nav li {
  margin-bottom: 2px;
  position: relative;
}

/* Navigation links - Clean minimal styling */
.sidebar nav a {
  font-family: 'Roboto', sans-serif;
  color: #4a5568;
  text-decoration: none;
  font-size: 14px;
  font-weight: 450;
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.25s ease;
  position: relative;
  border-left: 3px solid transparent;
  line-height: 1.4;
}

.sidebar nav a:hover {
  color: #025DBB;
  background: rgba(2, 93, 187, 0.06);
  border-left-color: #025DBB;
  padding-left: 18px;
}

/* Active link styling */
.sidebar nav a.active {
  color: #025DBB;
  background: rgba(2, 93, 187, 0.1);
  border-left-color: #025DBB;
  font-weight: 600;
}

/* Remove old animations and effects */
.sidebar nav li::before {
  display: none;
}

/* Remove bottom progress bar */
.sidebar::after {
  display: none;
}

/* Main Content */
.main-content {
  flex: 1;
  min-width: 0;
}





.content-image {
  width: 100%;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-caption {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 10px;
  font-style: italic;
}

.content-section ul {
  /* margin: 20px 0; */
  /* padding-left: 20px; */
}

.content-section li {
  margin-bottom: 12px;
  font-size: 17px;
  color: #333;
  line-height: 1.6;
}

.content-section li strong {
  color: #333;
}

/* Mobile Sidebar Toggle */
.sidebar-toggle {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #025DBB;
  color: white;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .sidebar {
    position: fixed;
    left: -300px;
    top: 0;
    height: 100vh;
    width: 280px;
    z-index: 999;
    transition: left 0.3s;
    overflow-y: auto;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
    /* Reset visibility for mobile - controlled by .active class instead */
    opacity: 1;
    visibility: visible;
  }

  .sidebar.active {
    left: 0;
  }

  /* Remove .visible class effect on mobile - use .active instead */
  .sidebar.visible {
    opacity: 1;
    visibility: visible;
  }

  .sidebar-toggle {
    display: block;
  }

  .content-wrapper {
    padding: 20px;
    margin: 20px auto;
    flex-direction: column;
  }

  .main-content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* Hero Section Mobile */
  .hero {
    padding: 50px 20px;
    min-height: 350px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }

  /* Content Wrapper Mobile */
  .content-wrapper {
    padding: 15px;
    margin: 15px auto;
    gap: 20px;
  }

  /* CTA Card Mobile */
  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 15px;
  }

  .cta-icon {
    font-size: 28px;
  }

  .cta-content h3 {
    font-size: 16px;
  }

  .cta-content p {
    font-size: 14px;
  }

  .cta-card .btn {
    width: 100%;
  }

  /* Content Sections Mobile */
  .content-section {
    margin-bottom: 30px;
  }

  .content-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .content-section p,
  .content-section li {
    font-size: 16px;
    line-height: 1.7;
  }

  /* Images Mobile */
  .content-image {
    margin: 20px 0;
    border-radius: 8px;
  }

  /* Benefit Description Mobile */
  .benefit-description {
    padding-left: 15px;
    font-size: 15px;
  }
  .benefit-descriptions{
    padding-left: 15px;
    font-size: 10px;
  }

  /* CTA Section Mobile */
  .cta-section {
    padding: 20px;
    margin-top: 30px;
  }

  /* Highlight Box Mobile */
  .highlight-box {
    padding: 20px;
    margin: 25px 0;
  }

  .highlight-box p {
    font-size: 15px;
  }

  /* Callout Mobile */
  .callout {
    padding: 15px;
    margin: 20px 0;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  /* Extra Small Screens */
  .hero {
    padding: 40px 15px;
    min-height: 300px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-badge {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .badge-item {
    font-size: 12px;
    padding: 4px 12px;
  }

  .content-wrapper {
    margin: 10px auto;
    padding: 0 12px;
  }

  .content-section h2 {
    font-size: 22px;
  }

  .content-section p,
  .content-section li {
    font-size: 15px;
  }

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

  .cta-card {
    padding: 15px;
  }

  .cta-icon {
    font-size: 24px;
  }
}


/* Additional Content Styling - Intro Text and Benefits */
.intro-text {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: #374151;
  margin-bottom: 35px;
  line-height: 1.8;
}

.intro-text strong {
  color: #1f2937;
  font-weight: 600;
}

/* ul {
  list-style: none;
  margin-bottom: 40px;
}

li {
  margin-bottom: 30px;
  padding-left: 0;
} */

.benefit-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 10px;
  display: block;
}

.benefit-description {
  font-family: 'Roboto', sans-serif;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  padding-left: 20px;
  border-left: 3px solid #e5e7eb;
}
.benefit-descriptions{
 font-family: 'Roboto', sans-serif;
  font-size: 1.05rem;
  color: black;
  line-height: 1.8;
  padding-left: 20px;
  border-left: 3px solid #6f6f6f; 
}
.benefit-descriptions a{
color: #025DBB;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.benefit-description a {
  color: #025DBB;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.benefit-description a:hover {
  border-bottom-color: #025DBB;
}

/* CTA Section Styling */
.cta-section {
  margin-top: 50px;
  padding: 30px;
  background: #f3f4f6;
  border-left: 4px solid #025DBB;
  border-radius: 8px;
}

.cta-text {
  font-family: 'Roboto', sans-serif;
  font-size: 1.05rem;
  color: #374151;
  margin-bottom: 20px;
  line-height: 1.8;
}

.cta-link {
  font-family: 'Roboto', sans-serif;
  color: #025DBB;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #025DBB;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.cta-link:hover {
  color: #025DBB;
  border-bottom-color: #025DBB;
}

/* Responsive adjustments for content sections */
@media (max-width: 768px) {
  #key-benefits {
    margin-bottom: 30px;
  }

  #key-benefits ul {
    padding-left: 0;
  }

  #key-benefits li {
    margin-bottom: 20px;
  }

  .intro-text {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .benefit-title {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .benefit-description {
    font-size: 15px;
    padding-left: 12px;
    border-left-width: 2px;
  }

  .cta-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .intro-text {
    font-size: 15px;
  }

  .benefit-title {
    font-size: 16px;
  }

  .benefit-description {
    font-size: 14px;
    padding-left: 10px;
  }
}

/* Highlight Box Styling */
.highlight-box {
  background: linear-gradient(to right, #eff6ff 0%, #dbeafe 100%);
  border-left: 4px solid #025DBB;
  padding: 25px 30px;
  margin: 35px 0;
  border-radius: 0 4px 4px 0;
}

.highlight-box p {
  margin-bottom: 0;
  color: #1e40af;
  font-size: 1.05rem;
}

/* Enhanced List Styling with Quick Summary */
/* ul {
  list-style: none;
  margin-top: 40px;
  padding: 30px;
  background: #f9fafb;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
} */

/* ul::before {
  content: "Quick Summary:";
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
} */

/* li {
  font-size: 1.05rem;
  color: #4b5563;
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
} */
/* 
li:last-child {
  margin-bottom: 0;
} */
/* 
li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #025DBB;
  color: white;
  font-weight: bold;
  font-size: 12px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(2, 93, 187, 0.3);
} */

/* Definition Box Styling */
/* .definition {
  background: #f3f4f6;
  border-left: 4px solid #6b7280;
  padding: 20px 25px;
  margin: 30px 0;
  font-style: italic;
} */

.definition p {
  margin-bottom: 0;
  color: #374151;
}
.content-section {
  margin-bottom: 3.5rem;
  scroll-margin-top: 100px;
}

.content-section:last-child {
  margin-bottom: 0;
}

.content-section h2 {
  font-size: 1.85rem;
  color: #1a202c;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  /* border-left: 4px solid #2563eb; */
  /* padding-left: 1rem; */
}

.content-section p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

.highlight-text {
  background-color: #f7fafc;
  border-left: 3px solid #4299e1;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
}

/* Links */
a {
  color: #025DBB;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration-color: #025DBB;
}

/* Enhanced bullet points for simple lists */
.bullet-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.bullet-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
}

.bullet-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  background: #025DBB;
  color: white;
  font-weight: bold;
  font-size: 10px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(2, 93, 187, 0.3);
}

/* Alternative square bullet style */
.square-bullet-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.square-bullet-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
}

.square-bullet-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 14px;
  height: 14px;
  background: #025DBB;
  color: white;
  font-weight: bold;
  font-size: 9px;
  border-radius: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(2, 93, 187, 0.3);
}

/* Responsive adjustments for bullet lists */
@media (max-width: 768px) {
  .bullet-list li,
  .square-bullet-list li {
    font-size: 15px;
    padding-left: 22px;
    margin-bottom: 8px;
  }
  
  .bullet-list li::before {
    width: 14px;
    height: 14px;
    font-size: 9px;
    border-radius: 1px;
  }
  
  .square-bullet-list li::before {
    width: 12px;
    height: 12px;
    font-size: 8px;
    border-radius: 1px;
  }
}

@media (max-width: 480px) {
  .bullet-list li,
  .square-bullet-list li {
    font-size: 14px;
    padding-left: 20px;
    margin-bottom: 6px;
  }
  
  .bullet-list li::before {
    width: 12px;
    height: 12px;
    font-size: 8px;
    border-radius: 1px;
  }
  
  .square-bullet-list li::before {
    width: 10px;
    height: 10px;
    font-size: 7px;
    border-radius: 1px;
  }
}

/* Lists */
.styled-list {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.styled-list li {
  font-family: 'Roboto', sans-serif;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.styled-list li strong {
  font-family: 'Roboto', sans-serif;
  color: #1a202c;
  font-weight: 600;
}

ol.styled-list {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
}

ol.styled-list li {
  counter-increment: item;
  position: relative;
  padding-left: 3rem;
}

ol.styled-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  /* background-color: #2563eb; */
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 0.9rem;
}

ul.styled-list {
  list-style: none;
  padding-left: 0;
}

ul.styled-list li {
  position: relative;
  padding-left: 2rem;
}

ul.styled-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #025DBB;
  color: white;
  font-weight: bold;
  font-size: 12px;
  border-radius: 2px; /* Changed from 3px to 2px for more square appearance */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(2, 93, 187, 0.3);
}

/* Mobile responsive for styled lists */
@media (max-width: 768px) {
  .styled-list {
    margin: 1.2rem 0;
    padding-left: 1.5rem;
  }

  .styled-list li {
    margin-bottom: 1rem;
    font-size: 15px;
  }

  ol.styled-list li {
    padding-left: 2.5rem;
  }

  ol.styled-list li::before {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }

  ul.styled-list li {
    padding-left: 1.8rem;
  }

  ul.styled-list li::before {
    width: 16px;
    height: 16px;
    font-size: 10px;
    top: 3px;
    border-radius: 2px;
  }
}

@media (max-width: 480px) {
  .styled-list {
    padding-left: 1.2rem;
  }

  .styled-list li {
    font-size: 14px;
    margin-bottom: 0.9rem;
  }

  ol.styled-list li {
    padding-left: 2.2rem;
  }

  ol.styled-list li::before {
    width: 26px;
    height: 26px;
    font-size: 0.8rem;
  }

  ul.styled-list li {
    padding-left: 1.5rem;
  }

  ul.styled-list li::before {
    width: 14px;
    height: 14px;
    font-size: 9px;
    top: 3px;
    border-radius: 1px;
  }
}

/* Table */
.table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  font-family: 'Roboto', sans-serif;
}

.comparison-table thead {
  /* background-color: #2563eb; */
  color: white;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table tbody tr {
  transition: background-color 0.2s ease;
}

.comparison-table tbody tr:hover {
  background-color: #f7fafc;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: #2c3e50;
}

/* Table of Contents */
.table-of-contents {
  position: relative;
}

.toc-sticky {
  position: sticky;
  top: 100px;
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.toc-sticky h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: #1a202c;
  margin-bottom: 1rem;
  font-weight: 600;
}

.toc-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toc-link {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: #333;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.toc-link:hover {
  color: #025DBB;
  background-color: #f7fafc;
  border-left-color: #cbd5e0;
}

.toc-link.active {
  color: #025DBB;
  background-color: #eff6ff;
  border-left-color: #025DBB;
  font-weight: 600;
}

/* Footer */
.site-footer {
  background-color: #1a202c;
  color: #a0aec0;
  text-align: center;
  padding: 2rem 0;
  margin-top: 4rem;
}

.site-footer p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .blog-article .container {
    grid-template-columns: 1fr;
  }

  .table-of-contents {
    order: -1;
    margin-bottom: 2rem;
  }

  .toc-sticky {
    position: static;
  }

  .toc-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

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

  .article-body {
    /* padding: 2rem 1.5rem; */
  }

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

  .styled-list {
    padding-left: 1rem;
  }

  ol.styled-list li {
    padding-left: 2.5rem;
  }

  ol.styled-list li::before {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .toc-nav {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .article-title {
    font-size: 1.65rem;
  }

  .article-body {
    /* padding: 1.5rem 1rem; */
  }

  .content-section {
    margin-bottom: 2rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.6rem 0.75rem;
    font-size: 0.85rem;
  }
}

/* Additional Mobile Optimizations for Better Readability */
@media (max-width: 768px) {
  /* Ensure all images are responsive */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Better spacing for article content */
  .article-content {
    padding: 0;
  }

  .article-content p {
    margin-bottom: 1.2rem;
  }

  /* Improve readability of text blocks */
  .content-section p {
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Better button spacing on mobile */
  .btn + .btn {
    margin-top: 10px;
  }

  /* Ensure proper spacing between sections */
  section + section {
    margin-top: 30px;
  }

  /* Improve table responsiveness */
  .table-wrapper {
    margin: 1.5rem 0;
  }

  /* Better link tap targets for mobile */
  a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* Improve form elements on mobile */
  input,
  textarea,
  select {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

@media (max-width: 480px) {
  /* Extra small screen optimizations */
  .content-section p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Tighter spacing for very small screens */
  section + section {
    margin-top: 25px;
  }

  /* Smaller margins for better space utilization */
  .content-section {
    margin-bottom: 1.5rem;
  }
}

/* Responsive adjustments for what-is-offshore section */
@media (max-width: 768px) {
  #what-is-offshore {
    margin-bottom: 30px;
  }

  #what-is-offshore h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  #what-is-offshore p {
    font-size: 16px;
    line-height: 1.7;
  }

  #what-is-offshore .definition {
    /* padding: 18px 20px; */
    /* margin: 20px 0; */
  }

  #what-is-offshore .definition p {
    font-size: 15px;
  }

  #what-is-offshore .highlight-box {
    padding: 18px 20px;
    margin: 20px 0;
  }

  #what-is-offshore ol.styled-list {
    margin: 20px 0;
  }

  #what-is-offshore ol.styled-list li {
    font-size: 15px;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  #what-is-offshore h2 {
    font-size: 22px;
  }

  #what-is-offshore p {
    font-size: 15px;
  }

  #what-is-offshore .definition {
    /* padding: 15px 18px; */
  }

  #what-is-offshore .highlight-box {
    padding: 15px 18px;
  }

  #what-is-offshore ol.styled-list li {
    font-size: 14px;
  }
}

/* Choosing Company Section - Consistent Styling */
#choosing-company {
  margin-bottom: 60px;
}

#choosing-company h2 {
  text-align: left;
  font-size: 32px;
  color: #222;
  margin-bottom: 20px;
  font-weight: 600;
  text-shadow: none;
  display: block;
}

#choosing-company > p:first-of-type {
  text-align: left;
  font-size: 17px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 100%;
}

.choosing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.choosing-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transform: translateY(0);
  position: relative;
  overflow: hidden;
}

.choosing-card:hover {
  /* transform: translateY(-10px) scale(1.02); */
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.choosing-card-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.choosing-card-header.blue {
  background:  rgba(255, 255, 255, 0.3);
}

.choosing-card-header.red {
  background:  rgba(255, 255, 255, 0.3);
}

.choosing-card-header.orange {
  background:  rgba(255, 255, 255, 0.3);
}

.choosing-card-header.purple {
  background:  rgba(255, 255, 255, 0.3);
}

.choosing-card-header.green {
  background:  rgba(255, 255, 255, 0.3);
}

.choosing-card-title {
  font-family: 'Roboto', sans-serif;
  display: block;
  font-size: 1.3em;
  color:  rgba(255, 255, 255, 0.3);
  margin-bottom: 12px;
  font-weight: 700;
}

.choosing-card-text {
  font-family: 'Roboto', sans-serif;
  color: black;
  margin: 0 0 12px 0;
  font-size: 1.1em;
  line-height: 1.6;
}

.choosing-card-link {
  font-family: 'Roboto', sans-serif;
  color: black;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: color 0.3s;
  display: inline-block;
  margin-bottom: 12px;
}



.choosing-progress {
  margin-top: 15px;
  height: 4px;
  background: #ecf0f1;
  border-radius: 2px;
  overflow: hidden;
}

.choosing-progress-fill {
  height: 100%;
  transition: width 0.6s ease;
}

.choosing-progress-fill.blue {
  background: grey;
  width: 85%;
}

.choosing-progress-fill.red {
  background:grey;
  width: 92%;
}

.choosing-progress-fill.orange {
  background: grey;
  width: 78%;
}

.choosing-progress-fill.purple {
  background: grey;
  width: 88%;
}

.choosing-progress-fill.green {
  background: grey;
  width: 95%;
}

.choosing-card:hover .choosing-progress-fill {
  width: 100% !important;
}

.choosing-card.full-width {
  grid-column: 1 / -1;
}

.choosing-summary {
  font-family: 'Roboto', sans-serif;
  text-align: left;
  font-size: 17px;
  color: #333;
  margin-top: 30px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  font-weight: 400;
  box-shadow: none;
  line-height: 1.8;
}

/* Responsive adjustments for choosing company section */
@media (max-width: 768px) {
  #choosing-company {
    margin-bottom: 40px;
  }

  #choosing-company h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  #choosing-company > p:first-of-type {
    font-size: 16px;
    margin-bottom: 20px;
  }

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

  .choosing-card {
    padding: 18px;
    border-radius: 12px;
  }

  .choosing-card-title {
    font-size: 1.1em;
    margin-bottom: 10px;
  }

  .choosing-card-text {
    font-size: 0.95em;
    line-height: 1.5;
  }

  .choosing-card-link {
    font-size: 0.9em;
  }

  .choosing-summary {
    font-size: 16px;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  #choosing-company h2 {
    font-size: 22px;
  }

  #choosing-company > p:first-of-type {
    font-size: 15px;
  }

  .choosing-card {
    padding: 15px;
  }

  .choosing-card-title {
    font-size: 1em;
  }

  .choosing-card-text {
    font-size: 0.9em;
  }
}

/* Requirements Boxes - Creative Horizontal Layout */
.requirements-boxes {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin: 30px 0;
  overflow-x: auto;
  padding: 10px 0;
}

.requirements-boxes::-webkit-scrollbar {
  height: 6px;
}

.requirements-boxes::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.requirements-boxes::-webkit-scrollbar-thumb {
  background: #025DBB;
  border-radius: 10px;
}

.req-box {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px 15px;
  min-width: 180px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}





.req-box:hover::before {
  transform: scaleX(1);
}

.req-icon {
  font-size: 32px;
  animation: float 3s ease-in-out infinite;
}

.req-box:nth-child(1) .req-icon {
  animation-delay: 0s;
}

.req-box:nth-child(2) .req-icon {
  animation-delay: 0.2s;
}

.req-box:nth-child(3) .req-icon {
  animation-delay: 0.4s;
}

.req-box:nth-child(4) .req-icon {
  animation-delay: 0.6s;
}

.req-box:nth-child(5) .req-icon {
  animation-delay: 0.8s;
}

.req-text {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
}

/* Responsive adjustments for requirements boxes */
@media (max-width: 768px) {
  .requirements-boxes {
    gap: 12px;
    padding: 8px 0;
  }

  .req-box {
    min-width: 160px;
    padding: 18px 12px;
  }

  .req-icon {
    font-size: 28px;
  }

  .req-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .requirements-boxes {
    gap: 10px;
  }

  .req-box {
    min-width: 140px;
    padding: 15px 10px;
  }

  .req-icon {
    font-size: 24px;
  }

  .req-text {
    font-size: 12px;
  }
}

/* Measuring ROI Section - Metrics Cards */
.metrics-grid {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin: 30px 0;
  overflow-x: auto;
  padding-bottom: 10px;
}

.metrics-grid::-webkit-scrollbar {
  height: 8px;
}

.metrics-grid::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.metrics-grid::-webkit-scrollbar-thumb {
  background: #025DBB;
  border-radius: 10px;
}

.metrics-grid::-webkit-scrollbar-thumb:hover {
  background: #025DBB;
}

.metric-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 280px;
  flex-shrink: 0;
}

.metric-card:hover {
  border-color: #025DBB;
  box-shadow: 0 8px 20px rgba(2, 93, 187, 0.2);
  /* transform: translateY(-5px); */
}

.metric-card-highlight {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-color: #025DBB;
}

.metric-icon {
  font-size: 48px;
  /* margin-bottom: 15px; */
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}





.metric-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.metric-description {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.metric-indicator {
  background: #f9fafb;
  border-left: 3px solid #025DBB;
  padding: 12px 15px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.metric-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric-value {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
}

.roi-summary {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-left: 4px solid #f59e0b;
  padding: 20px 25px;
  border-radius: 8px;
  margin-top: 30px;
}

.roi-summary p {
  margin: 0;
  font-size: 1.05rem;
  color: #78350f;
  line-height: 1.7;
}

.roi-summary strong {
  color: #92400e;
}

/* Responsive adjustments for metrics */
@media (max-width: 768px) {
  #measuring-roi {
    margin-bottom: 30px;
  }

  #measuring-roi h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  #measuring-roi > p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .metrics-grid {
    gap: 12px;
    padding-bottom: 8px;
  }

  .metric-card {
    padding: 18px;
    min-width: 240px;
  }

  .metric-icon {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .metric-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .metric-description {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .metric-indicator {
    padding: 10px 12px;
  }

  .metric-label {
    font-size: 0.75rem;
  }

  .metric-value {
    font-size: 0.9rem;
  }

  .roi-summary {
    padding: 16px 18px;
    margin-top: 20px;
  }

  .roi-summary p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  #measuring-roi h2 {
    font-size: 22px;
  }

  #measuring-roi > p {
    font-size: 15px;
  }

  .metric-card {
    padding: 15px;
    min-width: 220px;
  }

  .metric-icon {
    font-size: 32px;
  }

  .metric-title {
    font-size: 1rem;
  }

  .metric-description {
    font-size: 0.85rem;
  }

  .roi-summary {
    padding: 14px 16px;
  }

  .roi-summary p {
    font-size: 14px;
  }
}

/* Conclusion Section - Key Takeaways */
.conclusion-section {
  margin-bottom: 60px;
}

.conclusion-intro {
  /* text-align: center; */
  margin-bottom: 40px;
}

.conclusion-intro p {
  font-size: 1.2rem;
  color: #374151;
  line-height: 1.8;
  max-width: 700px;
  /* margin: 0 auto; */
}

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

.takeaway-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.takeaway-card:hover {
  border-color: #025DBB;
  box-shadow: 0 8px 20px rgba(2, 93, 187, 0.15);
  transform: translateY(-5px);
}

.takeaway-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #025DBB, #025DBB);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(2, 93, 187, 0.3);
}

.takeaway-card h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.takeaway-card p {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

.next-steps {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
}

.next-steps h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 30px;
}

.next-steps-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.next-step-link {
  font-family: 'Roboto', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  text-decoration: none;
  color: #374151;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.next-step-link:hover {
  border-color: #025DBB;
  color: #025DBB;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(2, 93, 187, 0.2);
}

.next-step-primary {
  background: linear-gradient(135deg, #025DBB, #025DBB);
  border-color: #025DBB;
  color: #ffffff;
}

.next-step-primary:hover {
  background: linear-gradient(135deg, #025DBB, #025DBB);
  border-color: #025DBB;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(2, 93, 187, 0.4);
}

.link-icon {
  font-size: 1.5rem;
}

.link-text {
  font-size: 1rem;
}

/* Responsive adjustments for conclusion */
@media (max-width: 768px) {
  .conclusion-section {
    margin-bottom: 40px;
  }

  #conclusion h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .conclusion-intro {
    margin-bottom: 30px;
  }

  .conclusion-intro p {
    font-size: 17px;
    line-height: 1.6;
  }

  .takeaways-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }

  .takeaway-card {
    padding: 20px 18px;
  }

  .takeaway-number {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .takeaway-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .takeaway-card p {
    font-size: 0.95rem;
  }

  .next-steps {
    padding: 25px 18px;
    border-radius: 12px;
  }

  .next-steps h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .next-steps-links {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .next-step-link {
    justify-content: center;
    padding: 12px 20px;
  }

  .link-icon {
    font-size: 1.3rem;
  }

  .link-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  #conclusion h2 {
    font-size: 22px;
  }

  .conclusion-intro p {
    font-size: 16px;
  }

  .takeaway-card {
    padding: 18px 15px;
  }

  .takeaway-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .takeaway-card h3 {
    font-size: 1rem;
  }

  .takeaway-card p {
    font-size: 0.9rem;
  }

  .next-steps {
    padding: 20px 15px;
  }

  .next-steps h3 {
    font-size: 1.3rem;
  }

  .next-step-link {
    padding: 10px 16px;
  }

  .link-text {
    font-size: 0.9rem;
  }
}

/* Additional Animations and Styles */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Typography */
h1 {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.subtitle {
  font-size: 1.1em;
  font-weight: 300;
  opacity: 0.95;
}

.content {
  /* padding: 50px; */
}

/* Intro Section Styling */
.intro {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1em;
  line-height: 1.8;
  color: #333;
  margin-bottom: 40px;
  padding: 25px;
  background: #f8f9fa;
  border-left: 4px solid #025DBB;
  border-radius: 4px;
}

/* Criteria Grid Layout */
.criteria-grid {
  display: grid;
  gap: 25px;
  margin-bottom: 40px;
}

/* Criterion Card Styling */
.criterion {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.criterion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #025DBB 0%, #025DBB 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.criterion:hover {
  border-color: #025DBB;
  box-shadow: 0 8px 25px rgba(2, 93, 187, 0.15);
  transform: translateX(5px);
}

.criterion:hover::before {
  transform: scaleY(1);
}

.criterion-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.criterion-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #025DBB 0%, #025DBB 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2em;
  margin-right: 15px;
  flex-shrink: 0;
}

.criterion h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.3em;
  font-weight: 500;
  color: #025DBB;
}

.criterion p {
  font-family: 'Roboto', sans-serif;
  font-size: 1em;
  line-height: 1.7;
  color: #333;
  margin-left: 55px;
}

.criterion a {
  color: #025DBB;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.criterion a:hover {
  border-bottom-color: #025DBB;
}

/* Conclusion Box Styling */
.conclusion {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin-top: 40px;
}

.conclusion p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1em;
  line-height: 1.8;
  color: #333;
}

.highlight {
  font-family: 'Roboto', sans-serif;
  color: #667eea;
  font-weight: 500;
}

/* Responsive adjustments for criteria sections */
@media (max-width: 768px) {
  .container h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .subtitle {
    font-size: 16px;
  }

  .intro {
    padding: 18px 20px;
    margin-bottom: 30px;
    font-size: 16px;
  }

  .criteria-grid {
    gap: 15px;
    margin-bottom: 30px;
  }

  .criterion {
    padding: 18px;
  }

  .criterion-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1em;
    margin-right: 12px;
  }

  .criterion h3 {
    font-size: 1.15em;
  }

  .criterion p {
    font-size: 0.95em;
    margin-left: 48px;
    line-height: 1.6;
  }

  .conclusion {
    padding: 20px;
    margin-top: 30px;
  }

  .conclusion p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .container h1 {
    font-size: 22px;
  }

  .subtitle {
    font-size: 15px;
  }

  .intro {
    padding: 15px 18px;
    font-size: 15px;
  }

  .criterion {
    padding: 15px;
  }

  .criterion-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .criterion-icon {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .criterion h3 {
    font-size: 1.05em;
  }

  .criterion p {
    margin-left: 0;
    margin-top: 10px;
    font-size: 0.9em;
  }

  .conclusion {
    padding: 18px;
  }

  .conclusion p {
    font-size: 15px;
  }
}
/* Section styling */
.content-section {
  font-family: 'Roboto', sans-serif;
  max-width: 100%;
  margin-bottom: 40px;
  line-height: 1.8;
  color: #333;
  scroll-margin-top: 120px; /* Offset for fixed header when scrolling to section */
}

.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.3;
}

.content-section p {
  /* font-size: 1.05rem; */
  /* font-weight: 400; */
  margin-bottom: 20px;
  color: #444;
}

/* Styled ordered list */
.styled-list {
  list-style: none;
  counter-reset: item;
  padding-left: 0;
  margin: 30px 0;
}



.styled-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  /* background: #025DBE; */
  color: #fff;
  
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-weight: 700; */
  /* font-size: 1.1rem; */
}


/* Section styling */
#common-challenges {
  font-family: "Roboto", sans-serif;
  max-width: 100%;
  margin-bottom: 40px;
}

/* Heading styling */
#common-challenges h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.3;
}

/* Paragraph styling */
#common-challenges p {
  /* font-size: 1.125rem; */
  /* font-weight: 400; */
  color: #333;
  /* line-height: 1.7; */
  margin-bottom: 32px;
}

/* Ordered list styling with aligned numbers */
#common-challenges ol {
  list-style: none;
  counter-reset: item;
  padding-left: 0;
  margin: 40px 0;
}

#common-challenges ol li {
  /* counter-increment: item; */
  position: relative;
  padding-left: 70px;
  margin-bottom: 32px;
  /* font-size: 1.0625rem; */
  /* line-height: 1.7; */
  /* color: black; */
}

/* Styled number badges */
#common-challenges ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  /* width: 45px; */
  /* height: 45px; */
  /* background: linear-gradient(135deg, #025DBE 0%, #025DBE 100%); */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-size: 1.25rem; */
  /* font-weight: 700; */
  /* box-shadow: 0 4px 12px #025DBE(102, 126, 234, 0.3); */
}

/* Strong text within list items */


/* Last paragraph styling */

/* Responsive design for common-challenges */
@media (max-width: 768px) {
  #common-challenges {
    margin-bottom: 30px;
  }

  #common-challenges h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  #common-challenges > p {
    font-size: 16px;
    margin-bottom: 25px;
  }

  #common-challenges ol {
    margin: 25px 0;
  }

  #common-challenges ol li {
    padding-left: 50px;
    margin-bottom: 25px;
    font-size: 15px;
  }

  #common-challenges ol li::before {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  #common-challenges ol li strong {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  #common-challenges h2 {
    font-size: 22px;
  }

  #common-challenges > p {
    font-size: 15px;
  }

  #common-challenges ol li {
    padding-left: 45px;
    margin-bottom: 20px;
    font-size: 14px;
  }

  #common-challenges ol li::before {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  #common-challenges ol li strong {
    font-size: 15px;
  }
}
 #future-trends {
            font-family: "Roboto", sans-serif;
            max-width: 100%;
            margin-bottom: 40px;
            position: relative;
        }

        /* Heading styling */
        #future-trends h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 24px;
            line-height: 1.3;
            /* text-align: center; */
            position: relative;
            padding-bottom: 20px;
        }

        #future-trends > p {
            font-size: 1.125rem;
            font-weight: 400;
            color: #333;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        /* Future Trends Cards with Numbers */
        .trends-cards {
            list-style: none;
            padding: 30px;
            margin: 30px 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 100%;
            counter-reset: trend-counter;
        }

        .trends-cards li {
            background: #ffffff;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            padding: 25px 30px 25px 90px;
            transition: all 0.3s ease;
            position: relative;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            width: 100%;
            box-sizing: border-box;
            overflow: visible;
            word-wrap: break-word;
            font-size: 1.05rem;
            color: #1a1a1a;
            line-height: 1.7;
            counter-increment: trend-counter;
        }

        /* Number Badge */
        .trends-cards li::before {
            content: counter(trend-counter);
            position: absolute;
            left: -25px;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #025DBB 0%, #025DBB 100%);
            color: #ffffff;
            font-size: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(2, 93, 187, 0.3);
            transition: all 0.3s ease;
        }

        /* Pin Icon */
        

        

        .trends-cards li:hover::before {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(2, 93, 187, 0.4);
        }

        .trends-cards li:hover::after {
            opacity: 1;
            transform: rotate(12deg);
        }

        .trends-cards li strong {
            display: inline;
            font-size: 1.15rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-right: 8px;
            line-height: 1.7;
            font-family: 'Roboto', sans-serif;
        }

        /* Color-coded left borders */
        .trends-cards li:nth-child(1) {
            border-left: 6px solid #025DBB;
        }

        .trends-cards li:nth-child(2) {
            border-left: 6px solid #025DBB;
        }

        .trends-cards li:nth-child(3) {
            border-left: 6px solid #025DBB;
        }

        .trends-cards li:nth-child(4) {
            border-left: 6px solid #025DBB;
        }

        .trends-cards li:nth-child(5) {
            border-left: 6px solid #025DBB;
        }

        /* Last paragraph emphasis */
        #future-trends > p:last-child {
            font-size: 1.125rem;
            font-weight: 500;
            color: #1a1a1a;
            max-width: 100%;
            margin-top: 30px;
            padding: 28px 32px;
            background: linear-gradient(135deg, rgba(2, 93, 187, 0.08) 0%, rgba(2, 93, 187, 0.05) 100%);
            border-radius: 12px;
            border-left: 5px solid #025DBB;
            box-shadow: 0 4px 16px rgba(2, 93, 187, 0.1);
            line-height: 1.8;
        }

        /* Responsive design for mobile */
        @media (max-width: 768px) {
            #future-trends {
                margin-bottom: 30px;
            }

            #future-trends h2 {
                font-size: 24px;
                margin-bottom: 15px;
                padding-bottom: 0;
            }

            #future-trends > p {
                font-size: 16px;
                margin-bottom: 20px;
            }

            .trends-cards {
                gap: 12px;
                margin: 20px 0;
            }

            .trends-cards li {
                padding: 60px 18px 18px 18px;
                font-size: 15px;
                border-radius: 10px;
            }

            .trends-cards li::before {
                left: 50%;
                top: 15px;
                transform: translateX(-50%);
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .trends-cards li:hover::before {
                transform: translateX(-50%) scale(1.1);
            }

            .trends-cards li strong {
                font-size: 16px;
            }

            .trends-cards li::after {
                font-size: 1.2rem;
                top: 12px;
                right: 12px;
            }

            #future-trends > p:last-child {
                padding: 20px 18px;
                font-size: 16px;
                margin-top: 20px;
            }
        }

        @media (max-width: 480px) {
            #future-trends h2 {
                font-size: 22px;
            }

            #future-trends > p {
                font-size: 15px;
            }

            .trends-cards li {
                padding: 55px 15px 15px 15px;
                font-size: 14px;
            }

            .trends-cards li::before {
                width: 36px;
                height: 36px;
                font-size: 1.1rem;
                top: 12px;
            }

            .trends-cards li strong {
                font-size: 15px;
            }

            .trends-cards li::after {
                font-size: 1.1rem;
                top: 10px;
                right: 10px;
            }

            #future-trends > p:last-child {
                padding: 18px 15px;
                font-size: 15px;
            }
        }
        
   

   
  
   

    
    table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 32px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      overflow: hidden;
    }

    thead {
      background: linear-gradient(135deg, #025EBC 0%, #764ba2 100%);
      color: white;
    }

    th {
      padding: 16px;
      text-align: left;
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    tbody tr {
      border-bottom: 1px solid #e2e8f0;
      transition: background-color 0.2s ease;
    }

    tbody tr:hover {
      background-color: #f7fafc;
    }

    tbody tr:last-child {
      border-bottom: none;
    }

    td {
      padding: 20px 16px;
      color: #2d3748;
      font-size: 14px;
      line-height: 1.6;
    }

    .metric-icon {
      font-size: 32px;
      text-align: center;
    }

    .metric-title {
      font-weight: 600;
      color: #1a202c;
      margin-bottom: 4px;
    }

    .metric-value {
      display: inline-block;
      background: #edf2f7;
      padding: 4px 12px;
      border-radius: 6px;
      font-size: 13px;
      color: #2d3748;
      font-weight: 500;
    }

    .roi-summary {
      background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
      border-left: 4px solid #f39c12;
      padding: 20px 24px;
      border-radius: 8px;
      margin-top: 32px;
    }

    .roi-summary p {
      color: #2d3748;
      font-size: 15px;
      line-height: 1.6;
      margin: 0;
    }

    @media (max-width: 768px) {
      .container {
        /* padding: 24px; */
      }

      table {
        font-size: 13px;
      }

      th, td {
        padding: 12px 8px;
      }

      .metric-icon {
        font-size: 24px;
      }

      h2 {
        font-size: 22px;
      }
    }
  .offshore-guide-wrapper {
            max-width: 1200px;
            margin: 0;
            padding: 0;
        }

        .guide-main-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 0.75rem;
            margin-top: 0;
        }

        .guide-subtitle-text {
            font-size: 1.2rem;
            color: #7f8c8d;
            margin-bottom: 1.5rem;
            margin-top: 0.5rem;
            font-weight: 300;
        }

        .guide-content-box {
            background: transparent;
            padding: 0;
            border-radius: 0;
            margin-top: 1rem;
        }

        .guide-intro-paragraph {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            margin-top: 0;
            color: #555;
        }

        .criteria-list-container {
            display: grid;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            margin-top: 0;
        }

        .criteria-item-card {
            padding: 1.25rem;
            background: transparent;
            border-radius: 6px;
            border-left: 4px solid #015EBC;
            margin-bottom: 0;
        }

        .criteria-header-section {
            margin-bottom: 0.75rem;
            margin-top: 0;
        }

        .criteria-item-title {
            font-size: 1.5rem;
            font-weight: 500;
            color: #2c3e50;
            margin-bottom: 0.75rem;
            margin-top: 0;
        }

        .criteria-bullet-list {
            list-style-type: disc;
            list-style-position: outside;
            padding-left: 1.25rem;
            color: #555;
            margin-top: 0;
            margin-bottom: 0;
        }

        .criteria-list-item {
            margin-bottom: 0.5rem;
            line-height: 1.6;
            display: list-item;
        }

        .criteria-list-item:last-child {
            margin-bottom: 0;
        }

        .criteria-service-link {
            color: #015EBC;
            text-decoration: none;
        }

        .criteria-service-link:hover {
            text-decoration: underline;
        }

        .guide-conclusion-box {
            background: transparent;
            padding: 1.25rem 0;
            border-radius: 0;
            font-size: 1.05rem;
            margin-top: 1rem;
            margin-bottom: 0;
        }

        .highlight-text-emphasis {
            font-weight: 500;
            color: #2c3e50;
        }
         @media (max-width: 768px) {
            .offshore-guide-wrapper {
                padding: 0 !important;
                margin: 0 !important;
            }

            .guide-main-title {
                font-size: 1.75rem !important;
                margin-bottom: 0.5rem !important;
                margin-top: 0 !important;
            }

            .guide-subtitle-text {
                font-size: 1rem !important;
                margin-bottom: 1rem !important;
                margin-top: 0.5rem !important;
            }

            .guide-content-box {
                padding: 0 !important;
                margin-top: 0.75rem !important;
            }

            .guide-intro-paragraph {
                font-size: 1rem !important;
                margin-bottom: 1rem !important;
                margin-top: 0 !important;
            }

            .criteria-list-container {
                gap: 1rem !important;
                margin-bottom: 1rem !important;
                margin-top: 0 !important;
            }

            .criteria-item-card {
                padding: 1rem !important;
                margin-bottom: 0 !important;
            }

            .criteria-item-title {
                font-size: 1.25rem !important;
                margin-bottom: 0.5rem !important;
                margin-top: 0 !important;
            }

            .criteria-bullet-list {
                margin-top: 0 !important;
                margin-bottom: 0 !important;
                padding-left: 1rem !important;
            }

            .criteria-list-item {
                margin-bottom: 0.375rem !important;
            }

            .guide-conclusion-box {
                padding: 1rem 0 !important;
                font-size: 1rem !important;
                margin-top: 0.75rem !important;
            }
        }

        /* Mobile Responsiveness */
        @media (max-width: 480px) {
            .offshore-guide-wrapper {
                padding: 0 !important;
                margin: 0 !important;
            }

            .guide-main-title {
                font-size: 1.5rem !important;
                line-height: 1.3;
                margin-bottom: 0.5rem !important;
                margin-top: 0 !important;
            }

            .guide-subtitle-text {
                font-size: 0.9rem !important;
                margin-bottom: 0.75rem !important;
                margin-top: 0.375rem !important;
            }

            .guide-content-box {
                padding: 0 !important;
                border-radius: 0;
                margin-top: 0.5rem !important;
            }

            .guide-intro-paragraph {
                font-size: 0.95rem !important;
                line-height: 1.6;
                margin-bottom: 0.75rem !important;
                margin-top: 0 !important;
            }

            .criteria-list-container {
                gap: 0.75rem !important;
                margin-bottom: 0.75rem !important;
                margin-top: 0 !important;
            }

            .criteria-item-card {
                padding: 0.75rem !important;
                border-left-width: 3px;
                margin-bottom: 0 !important;
            }

            .criteria-item-title {
                font-size: 1.125rem !important;
                margin-bottom: 0.5rem !important;
                margin-top: 0 !important;
            }

            .criteria-bullet-list {
                padding-left: 1rem !important;
                margin-top: 0 !important;
                margin-bottom: 0 !important;
            }

            .criteria-list-item {
                margin-bottom: 0.25rem !important;
            }

            .criteria-bullet-list {
                list-style-type: disc;
                padding-left: 18px;
            }

            .criteria-list-item {
                font-size: 0.95rem;
                margin-bottom: 10px;
                display: list-item;
            }

            .guide-conclusion-box {
                padding: 15px;
                font-size: 0.95rem;
                border-radius: 6px;
            }
        }
/* Comparison Section - Aligned with other sections */
#comparison {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 40px;
}

#comparison h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    color: #222;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

#comparison p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.25rem;
}

.table-wrapper {
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

.comparison-table thead {
    background-color: #025DBB;
    color: white;
}

.comparison-table th {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table tbody tr {
    transition: background-color 0.2s ease;
}

.comparison-table tbody tr:hover {
    background-color: #f7fafc;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
    font-family: 'Roboto', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #333;
}

.factor-cell {
    font-weight: 600;
    color: #025DBB;
}

.inhouse-cell {
    color: #333;
    font-weight: 400;
}

.offshore-cell {
    color: #333;
    font-weight: 500;
}

.conclusion-box {
    margin-top: 30px;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(2, 93, 187, 0.08) 0%, rgba(2, 93, 187, 0.05) 100%);
    border-left: 5px solid #025DBB;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(2, 93, 187, 0.1);
}

.conclusion-box p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 0;
}

/* Responsive design for comparison section */
@media (max-width: 768px) {
    #comparison {
        margin-bottom: 30px;
    }

    #comparison h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    #comparison p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .table-wrapper {
        overflow-x: auto;
        margin: 1.5rem 0;
    }

    .comparison-table {
        min-width: 600px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 1rem;
        font-size: 15px;
    }

    .conclusion-box {
        padding: 20px 18px;
        margin-top: 20px;
    }

    .conclusion-box p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    #comparison h2 {
        font-size: 22px;
    }

    #comparison p {
        font-size: 15px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.6rem 0.75rem;
        font-size: 14px;
    }

    .conclusion-box {
        padding: 18px 15px;
    }

    .conclusion-box p {
        font-size: 15px;
    }
}

/* Contact Form Section */
#contact-form {
    margin-bottom: 60px;
}

.contact-form-wrapper {
    max-width: 800px;
    /* margin: 0 auto; */
    /* background: #ffffff; */
    /* border-radius: 16px; */
    /* padding: 40px; */
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
    /* border: 1px solid #e5e7eb; */
}

.contact-form-header {
    /* text-align: center; */
    margin-bottom: 40px;
}

.contact-form-header h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.3;
}

.contact-form-header p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 600px;
    /* margin: 0 auto; */
}

.contact-form {
    font-family: 'Roboto', sans-serif;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #1f2937;
    background-color: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    /* border-color: #025DBB; */
    box-shadow: 0 0 0 3px rgba(2, 93, 187, 0.1);
    background-color: #f8fafc;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #d1d5db;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-group textarea::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    appearance: none;
}

/* Checkbox Styling */
.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #374151;
    margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    background-color: #ffffff;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}


.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label a {
    text-decoration: underline;
    font-weight: 500;
}

.checkbox-label a:hover {
    text-decoration: none;
}

/* Form Actions */
.form-actions {
    text-align: center;
    color: #015EBC;
    margin-top: 32px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    background-color: #025DBB;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(2, 93, 187, 0.3);
    min-width: 200px;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 1.2rem;
}

.btn-text {
    font-size: 1.1rem;
}

.form-note {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 12px;
    margin-bottom: 0;
}

/* Form Validation States */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    background-color: #fef2f2;
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    background-color: #f0fdf4;
}

/* Responsive Design for Contact Form */
@media (max-width: 768px) {
    #contact-form {
        margin-bottom: 40px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
        margin: 0 15px;
        border-radius: 12px;
    }

    .contact-form-header h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .contact-form-header p {
        font-size: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .submit-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
    }

    .checkbox-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 25px 15px;
        margin: 0 10px;
    }

    .contact-form-header h2 {
        font-size: 1.6rem;
    }

    .contact-form-header p {
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
    }

    .submit-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

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

    .checkbox-label {
        font-size: 0.85rem;
    }

    .checkmark {
        width: 18px;
        height: 18px;
    }

    .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
        left: 5px;
        top: 1px;
        width: 5px;
        height: 9px;
    }
}

/* Form Loading State */
.submit-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    
}

.submit-btn.loading .btn-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Form Success/Error Messages */
.form-message {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
}



.form-message.error {
    background-color: #fef2f2;
    border: 1px solid #ef4444;
    color: #991b1b;
}

/* Form Animation */
.contact-form-wrapper {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Field Focus Animation */
.form-group {
    position: relative;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-1px);
}

/* Hover Effects for Better UX */
.form-group:hover label {
    color: #025DBB;
    transition: color 0.2s ease;
}

/* Custom Select Arrow Animation */
.form-group select:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23025DBB' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}

/* Form Progress Indicator */
.form-progress {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    margin-bottom: 30px;
    overflow: hidden;
}

.form-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #025DBB 0%, #025DBB 100%);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.requirements-boxes {
  display: flex;
  flex-direction: column;
}

.req-box {
  margin-bottom: 10px;
}
                  .blog-faq-section {
                    /* padding: 60px 0; */
                    /* background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); */
                    /* border-radius: 16px; */
                    /* margin: 40px 0; */
                  }

                  .blog-faq-container {
                    max-width: 900px;
                    /* margin: 0 auto; */
                    /* padding: 0 20px; */
                  }

                  .blog-faq-header {
                    text-align: center;
                    margin-bottom: 40px;
                  }

                  .blog-faq-header h2 {
                    font-family: 'Roboto', sans-serif;
                    font-size: 2.25rem;
                    font-weight: 700;
                    color: #1e293b;
                    margin-bottom: 12px;
                  }

                  .blog-faq-header p {
                    font-family: 'Roboto', sans-serif;
                    font-size: 1.1rem;
                    color: #64748b;
                    font-weight: 400;
                  }

                  .blog-faq-accordion {
                    display: flex;
                    flex-direction: column;
                    gap: 12px;
                  }

                  .blog-faq-item {
                    background: #ffffff;
                    border-radius: 12px;
                    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
                    overflow: hidden;
                    transition: box-shadow 0.3s ease;
                  }

                  .blog-faq-item:hover {
                    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
                  }

                  .blog-faq-question {
                    width: 100%;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 20px 24px;
                    background: transparent;
                    border: none;
                    cursor: pointer;
                    text-align: left;
                    transition: background-color 0.3s ease;
                  }

                  .blog-faq-question:hover {
                    background-color: #f1f5f9;
                  }

                  .blog-faq-question-text {
                    font-family: 'Roboto', sans-serif;
                    font-size: 1.05rem;
                    font-weight: 500;
                    color: #334155;
                    line-height: 1.5;
                    padding-right: 16px;
                  }

                  .blog-faq-icon {
                    font-size: 1.5rem;
                    font-weight: 300;
                    color: #3b82f6;
                    transition: transform 0.3s ease;
                    flex-shrink: 0;
                    width: 28px;
                    height: 28px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                  }

                  .blog-faq-item.active .blog-faq-icon {
                    transform: rotate(45deg);
                  }

                  .blog-faq-item.active .blog-faq-question {
                    background-color: #eff6ff;
                  }

                  .blog-faq-item.active .blog-faq-question-text {
                    color: #1d4ed8;
                  }

                  .blog-faq-answer {
                    max-height: 0;
                    overflow: hidden;
                    transition: max-height 0.4s ease, padding 0.3s ease;
                  }

                  .blog-faq-item.active .blog-faq-answer {
                    max-height: 500px;
                  }

                  .blog-faq-answer p {
                    font-family: 'Roboto', sans-serif;
                    font-size: 1rem;
                    font-weight: 400;
                    color: #475569;
                    line-height: 1.7;
                    padding: 0 24px 20px 24px;
                    margin: 0;
                  }

                  @media (max-width: 768px) {
                    .blog-faq-section {
                      padding: 40px 0;
                      margin: 24px 0;
                    }

                    .blog-faq-header h2 {
                      font-size: 1.75rem;
                    }

                    .blog-faq-header p {
                      font-size: 1rem;
                    }

                    .blog-faq-question {
                      padding: 16px 18px;
                    }

                    .blog-faq-question-text {
                      font-size: 0.95rem;
                    }

                    .blog-faq-answer p {
                      font-size: 0.95rem;
                      padding: 0 18px 16px 18px;
                    }
                  }


/* ============================================
   FINAL THOUGHTS SECTION STYLES
   ============================================ */

.final-thoughts-section {
  margin-bottom: 3.5rem;
  scroll-margin-top: 100px;
}

.final-thoughts-container {
  max-width: 100%;
}

.final-thoughts-header {
  text-align: left;
  margin-bottom: 32px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: #1d4ed8;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.section-badges {
  display: inline-block;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: #1d4ed8;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 1000;
  margin-bottom: 12px;
}

.final-thoughts-header h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 1rem;
  margin-top: 0;
}

.section-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #3b82f6;
  /* margin: 0; */
}

.final-thoughts-content {
  /* background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); */
  border-radius: 16px;
  /* padding: 32px; */
  margin-bottom: 32px;
}

.final-thoughts-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 16px;
}

.final-thoughts-content p:last-of-type {
  margin-bottom: 24px;
}

.final-thoughts-content strong {
  color: #1e293b;
  font-weight: 600;
}

.key-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  font-size: 1.5rem;
}

.benefit-text {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #334155;
}

.final-thoughts-cta {
  /* background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%); */
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.final-thoughts-cta .cta-content h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.final-thoughts-cta .cta-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* background: #ffffff; */
  color: #1e40af;
  padding: 16px 28px;
  border-radius: 12px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-button:hover {
  /* background: #f0f9ff; */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #1e40af;
  text-decoration: none;
}

.cta-button .arrow {
  transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .final-thoughts-section {
    padding: 40px 0;
    margin: 24px 0;
  }

  .final-thoughts-header h2 {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .final-thoughts-content {
    padding: 24px;
  }

  .final-thoughts-content p {
    font-size: 1rem;
  }

  .key-benefits-grid {
    grid-template-columns: 1fr;
  }

  .final-thoughts-cta {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .final-thoughts-cta .cta-content h3 {
    font-size: 1.25rem;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }
}


/* ============================================
   LATEST POSTS AND TAGS SECTION STYLES
   ============================================ */

.latest-posts-tags-section {
  margin-top: 60px;
  margin-bottom: 40px;
  scroll-margin-top: 100px;
}

.latest-posts-tags-container {
  max-width: 100%;
}

/* Latest Posts Wrapper */
.latest-posts-wrapper {
  margin-bottom: 50px;
}

.latest-posts-wrapper h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 1.5rem;
  text-align: left;
}

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

.latest-post-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.latest-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}

.latest-post-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

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

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

.latest-post-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.latest-post-category {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #025DBB;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.latest-post-content h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.latest-post-card:hover .latest-post-content h3 {
  color: #025DBB;
}

.latest-post-excerpt {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* Tags Wrapper */
.tags-wrapper {
  margin-top: 40px;
}

.tags-wrapper h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 1.5rem;
  text-align: left;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-item {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
  background: #f3f4f6;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.tag-item:hover {
  background: #025DBB;
  color: #ffffff;
  border-color: #025DBB;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Responsive Styles for Latest Posts and Tags */
@media (max-width: 1024px) {
  .latest-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .latest-posts-tags-section {
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .latest-posts-wrapper h2,
  .tags-wrapper h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }

  .latest-posts-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .latest-post-card {
    flex-direction: row;
  }

  .latest-post-image {
    width: 120px;
    height: auto;
    min-height: 120px;
    flex-shrink: 0;
  }

  .latest-post-content {
    padding: 16px;
  }

  .latest-post-content h3 {
    font-size: 1rem;
  }

  .latest-post-excerpt {
    font-size: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .tags-wrapper {
    margin-top: 30px;
  }

  .tags-cloud {
    gap: 10px;
  }

  .tag-item {
    font-size: 0.85rem;
    padding: 6px 14px;
  }
}

@media (max-width: 480px) {
  .latest-posts-wrapper h2,
  .tags-wrapper h2 {
    font-size: 1.5rem;
  }

  .latest-post-card {
    flex-direction: column;
  }

  .latest-post-image {
    width: 100%;
    height: 160px;
  }

  .latest-post-content {
    padding: 14px;
  }

  .latest-post-content h3 {
    font-size: 0.95rem;
  }

  .latest-post-excerpt {
    -webkit-line-clamp: 3;
  }

  .tag-item {
    font-size: 0.8rem;
    padding: 5px 12px;
  }
}

 .consultation-card {
            /* background: white; */
            border-radius: 12px;
            box-shadow: 0 10px 40px #f0f0f0;
            padding: 30px 40px;
            display: flex;
            align-items: center;
            gap: 25px;
            max-width: 800px;
            width: 100%;
        }

        .icon-container {
            flex-shrink: 0;
        }

        .lightbulb-icon {
            width: 60px;
            height: 60px;
            background: #ffd700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
        }

        .content {
            flex: 1;
        }

        .content h2 {
            font-size: 20px;
            font-weight: 500;
            color: #333;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .content p {
            font-size: 15px;
            font-weight: 300;
            color: #666;
            line-height: 1.5;
        }

        .cta-button {
            flex-shrink: 0;
        }

        .cta-button button {
            background: #015AB7;
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 8px;
            font-family: 'Roboto', sans-serif;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }

        .cta-button button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
        }

        .cta-button button:active {
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .consultation-card {
                flex-direction: column;
                text-align: center;
                padding: 25px;
            }

            .content h2 {
                font-size: 18px;
            }

            .content p {
                font-size: 14px;
            }
        }

        /* new content of blogs page */

         .blog-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 20px;
            background-color: #ffffff;
        }

        .blog-content {
            padding: 0 20px;
        }

        .main-heading {
            font-size: 32px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 30px;
            line-height: 1.3;
        }

        .section-heading {
            font-size: 24px;
            font-weight: 600;
            color: #2c3e50;
            margin-top: 40px;
            margin-bottom: 20px;
            line-height: 1.4;
        }

        .sub-heading {
            font-size: 18px;
            font-weight: 600;
            color: #34495e;
            margin-top: 25px;
            margin-bottom: 15px;
        }

        .paragraph {
            font-size: 16px;
            font-weight: 400;
            color: #4a5568;
            margin-bottom: 20px;
            text-align: justify;
        }

        .bullet-list {
            margin: 20px 0;
            padding-left: 0;
            list-style: none;
        }

        .list-item {
            font-size: 16px;
            font-weight: 400;
            color: #4a5568;
            margin-bottom: 12px;
            padding-left: 30px;
            position: relative;
        }

        .list-item::before {
            content: "•";
            color: #667eea;
            font-weight: 700;
            font-size: 20px;
            position: absolute;
            left: 10px;
        }

        .bold-text {
            font-weight: 600;
            color: #2c3e50;
        }

        .section {
            margin-bottom: 40px;
        }

        @media (max-width: 768px) {
            .main-heading {
                font-size: 26px;
            }

            .section-heading {
                font-size: 20px;
            }

            .sub-heading {
                font-size: 17px;
            }

            .paragraph, .list-item {
                font-size: 15px;
            }

            .blog-container {
                padding: 30px 15px;
            }

            .blog-content {
                padding: 0 10px;
            }
        }

/* ============================================
   MOBILE SPACING NORMALIZATION
   Comprehensive fix for mobile view spacing issues
   ============================================ */

@media (max-width: 768px) {
  /* === BODY AND CONTAINER FIXES === */
  body {
    padding-top: 70px !important;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
  }

  /* === HERO SECTION === */
  .hero {
    margin-top: 0 !important;
    padding: 3rem 1.25rem;
    min-height: auto;
  }

  .hero-content {
    padding: 0;
    margin: 0 auto;
  }

  /* === CONTENT WRAPPER === */
  .content-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 1.25rem !important;
    gap: 1.5rem;
    overflow-x: hidden;
  }

  /* === MAIN CONTENT === */
  .main-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  /* === SECTION SPACING (CRITICAL FIX) === */
  .content-section {
    margin-bottom: 2rem !important;
    padding: 0 !important;
    max-width: 100%;
    overflow-x: hidden;
  }

  .content-section:last-child {
    margin-bottom: 0 !important;
  }

  /* Section gap normalization */
  section {
    margin-bottom: 2rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100%;
    overflow-x: hidden;
  }

  section:last-child {
    margin-bottom: 0 !important;
  }

  article {
    margin-bottom: 2rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* === HEADING SPACING === */
  .content-section h1,
  .main-content h1,
  h1 {
    font-size: 1.75rem !important;
    margin-bottom: 1rem !important;
    margin-top: 0 !important;
    line-height: 1.3;
  }

  .content-section h2,
  .main-content h2,
  h2 {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
    margin-top: 1.5rem !important;
    line-height: 1.3;
  }

  .content-section h2:first-child,
  .main-content h2:first-child {
    margin-top: 0 !important;
  }

  .content-section h3,
  .main-content h3,
  h3 {
    font-size: 1.25rem !important;
    margin-bottom: 0.75rem !important;
    margin-top: 1.25rem !important;
    line-height: 1.4;
  }

  .content-section h4,
  .main-content h4,
  h4 {
    font-size: 1.125rem !important;
    margin-bottom: 0.625rem !important;
    margin-top: 1rem !important;
  }

  /* === PARAGRAPH SPACING === */
  .content-section p,
  .main-content p,
  p {
    margin-bottom: 1rem !important;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 100%;
  }

  /* === LIST SPACING === */
  .content-section ul,
  .content-section ol,
  .main-content ul,
  .main-content ol,
  ul,
  ol {
    margin: 1rem 0 1rem 0 !important;
    padding-left: 1.25rem !important;
    max-width: 100%;
  }

  .content-section li,
  .main-content li,
  li {
    margin-bottom: 0.75rem !important;
    line-height: 1.6;
  }

  /* === CTA CARD === */
  .cta-card {
    margin-bottom: 1.5rem !important;
    padding: 1.25rem !important;
    flex-direction: column;
    gap: 1rem;
  }

  /* === INTRO SECTION === */
  .intro-section {
    margin-bottom: 1.5rem !important;
    padding: 0 !important;
  }

  /* === HIGHLIGHT BOX === */
  .highlight-box {
    margin: 1.5rem 0 !important;
    padding: 1.25rem 1rem !important;
  }

  /* === CALLOUT === */
  .callout {
    margin: 1.25rem 0 !important;
    padding: 1rem !important;
  }

  /* === IMAGES === */
  .content-image,
  img {
    margin: 1.5rem 0 !important;
    max-width: 100%;
    height: auto;
  }

  /* === DEFINITION AND SPECIAL BOXES === */
  .definition {
    margin: 1.5rem 0 !important;
    padding: 1rem 1.25rem !important;
  }

  /* === BENEFIT SECTIONS === */
  .benefit-description,
  .benefit-descriptions {
    padding-left: 1rem !important;
    margin-bottom: 1rem !important;
  }

  /* === CTA SECTION === */
  .cta-section {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    padding: 1.25rem !important;
  }

  /* === BUTTONS === */
  .btn {
    padding: 0.75rem 1.25rem !important;
    margin-bottom: 0.75rem;
  }

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

  /* === PREVENT HORIZONTAL OVERFLOW === */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  /* === GRID AND FLEX CONTAINERS === */
  .choosing-grid,
  .metrics-grid,
  .requirements-boxes {
    gap: 1rem !important;
    padding: 0.5rem 0 !important;
  }

  /* === CARDS === */
  .choosing-card,
  .metric-card,
  .req-box {
    padding: 1rem !important;
    margin-bottom: 1rem;
  }

  /* === BLOG CONTAINER === */
  .blog-container {
    padding: 1.5rem 1rem !important;
    margin: 0 !important;
  }

  .blog-content {
    padding: 0 0.625rem !important;
  }

  /* === SIDEBAR MOBILE === */
  .sidebar {
    position: fixed;
    left: -300px;
    top: 0;
    width: 280px;
    height: 100vh;
    z-index: 999;
  }

  .sidebar.active {
    left: 0;
  }

  /* === FINAL THOUGHTS SECTION === */
  .final-thoughts-section {
    margin-bottom: 2rem !important;
    padding: 1.25rem 0 !important;
  }

  .final-thoughts-container {
    padding: 0 !important;
  }

  /* === FAQ SECTION === */
  .blog-faq-section {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
    padding: 0 !important;
  }

  /* === LATEST POSTS === */
  .latest-posts-tags-section {
    margin-top: 2rem !important;
    padding: 0 !important;
  }

  /* === REMOVE EXCESSIVE MARGINS === */
  .content-section > *:first-child {
    margin-top: 0 !important;
  }

  .content-section > *:last-child {
    margin-bottom: 0 !important;
  }

  /* === CONSISTENT SPACING BETWEEN ELEMENTS === */
  .content-section > * + * {
    margin-top: 1rem !important;
  }

  .content-section > h2 + *,
  .content-section > h3 + *,
  .content-section > h4 + * {
    margin-top: 0.75rem !important;
  }

  /* === NO NEGATIVE MARGINS === */
  * {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Allow only specific elements to have horizontal margins */
  .btn,
  .badge-item,
  .hero-badge {
    margin-left: inherit !important;
    margin-right: inherit !important;
  }

  /* === BR TAG CONTROL === */
  br {
    display: block;
    content: "";
    margin: 0.5rem 0;
    line-height: 0.5rem;
  }

  h1 + br,
  h2 + br,
  h3 + br,
  h4 + br,
  h5 + br,
  h6 + br,
  .guide-main-title + br,
  .guide-subtitle-text + br,
  .criteria-item-title + br {
    display: none !important;
  }

  /* === GUIDE WRAPPER MOBILE === */
  .offshore-guide-wrapper {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100%;
  }

  .guide-main-title {
    font-size: 1.75rem !important;
    margin-bottom: 0.5rem !important;
    margin-top: 0 !important;
    line-height: 1.3;
  }

  .guide-subtitle-text {
    font-size: 1rem !important;
    margin-bottom: 1rem !important;
    margin-top: 0.5rem !important;
    line-height: 1.5;
  }

  .guide-content-box {
    padding: 0 !important;
    margin: 0 !important;
  }

  .criteria-list-container {
    gap: 1rem !important;
    margin: 0 !important;
  }

  .criteria-item-card {
    padding: 1rem !important;
    margin-bottom: 0 !important;
  }

  .criteria-header-section {
    margin: 0 0 0.75rem 0 !important;
  }

  .criteria-item-title {
    font-size: 1.25rem !important;
    margin-bottom: 0.5rem !important;
    margin-top: 0 !important;
    line-height: 1.4;
  }

  .criteria-bullet-list {
    margin: 0 !important;
    padding-left: 1rem !important;
  }

  .criteria-list-item {
    margin-bottom: 0.375rem !important;
    line-height: 1.5;
  }

  .criteria-list-item:last-child {
    margin-bottom: 0 !important;
  }

  .guide-conclusion-box {
    padding: 1rem 0 !important;
    margin: 0.75rem 0 !important;
  }
}

/* === EXTRA SMALL SCREENS (480px and below) === */
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .content-wrapper {
    padding: 1rem !important;
  }

  .content-section {
    margin-bottom: 1.5rem !important;
  }

  .content-section h2,
  h2 {
    font-size: 1.375rem !important;
    margin-top: 1.25rem !important;
  }

  .content-section h3,
  h3 {
    font-size: 1.125rem !important;
  }

  .hero {
    padding: 2.5rem 1rem;
  }

  .cta-card,
  .highlight-box {
    padding: 1rem !important;
  }

  .btn {
    padding: 0.625rem 1rem !important;
  }

  /* === GUIDE SECTIONS === */
  .guide-main-title {
    font-size: 1.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .guide-subtitle-text {
    font-size: 0.9rem !important;
    margin-bottom: 0.75rem !important;
  }

  .criteria-list-container {
    gap: 0.75rem !important;
  }

  .criteria-item-card {
    padding: 0.75rem !important;
  }

  .criteria-item-title {
    font-size: 1.125rem !important;
  }

  br {
    margin: 0.375rem 0;
    line-height: 0.375rem;
  }
}