/* ================================
   DIVORCE LAWYER GUIDE STYLES
   Modern, Professional Design
   ================================ */

/* ===== GLOBAL STYLES ===== */
:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #059669;
  --accent-color: #dc2626;
  --warning-color: #d97706;
  --info-color: #0891b2;
  --success-color: #16a34a;
  --text-dark: #1f2937;
  --text-medium: #4b5563;
  --text-light: #6b7280;
  --bg-light: #f8fafc;
  --bg-lighter: #ffffff;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  --gradient-secondary: linear-gradient(135deg, #059669 0%, #047857 100%);
  --gradient-accent: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-light);
  scroll-behavior: smooth;
}

/* ===== NAVIGATION ===== */
.navbar-custom {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

/* Enhanced Brand/Logo Styling */
.brand-logo {
  display: flex !important;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-decoration: none !important;
  backdrop-filter: blur(10px);
  margin-right: 2rem;
}

.brand-logo:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.brand-icon-wrapper {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffffff, #e0e7ff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.brand-icon-wrapper i {
  font-size: 1.5rem;
  color: var(--primary-color);
  text-shadow: none;
}

.brand-content {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.brand-subtitle {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Fallback for old navbar-brand (if still used) */
.navbar-brand {
  color: white !important;
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: translateY(-2px);
}

.brand-text {
  background: linear-gradient(45deg, #ffffff, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced nav links */
.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem 1rem !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.nav-link:hover {
  color: white !important;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-link-active {
  background: rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.nav-link i {
  transition: transform 0.3s ease;
}

.nav-link:hover i {
  transform: scale(1.1);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: var(--gradient-primary);
  padding: 4rem 0 3rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="none"><path d="M0 20L50 25C100 30 200 40 300 35C400 30 500 10 600 15C700 20 800 40 900 45C950 47.5 975 42.5 987.5 40L1000 37.5V100H0V20Z" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat center bottom;
  background-size: cover;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.badge-custom {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.badge-custom:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* ===== CONTENT WRAPPER ===== */
.content-wrapper {
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.content-container {
  background: white;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  padding: 3rem;
  margin-bottom: 2rem;
}

.intro-section {
  margin-bottom: 3rem;
}

.lead-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: 2rem;
  font-weight: 400;
}

/* ===== ALERT STYLES ===== */
.alert-custom {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: none;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.alert-info {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-left: 4px solid var(--info-color);
}

.alert-success {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-left: 4px solid var(--success-color);
}

.alert-warning {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-left: 4px solid var(--warning-color);
}

.alert-icon {
  margin-right: 1rem;
  font-size: 1.25rem;
  margin-top: 0.125rem;
}

.alert-info .alert-icon {
  color: var(--info-color);
}

.alert-success .alert-icon {
  color: var(--success-color);
}

.alert-warning .alert-icon {
  color: var(--warning-color);
}

.alert-content {
  flex: 1;
  color: var(--text-dark);
}

.alert-content strong {
  color: inherit;
}

.alert-info .alert-content strong {
  color: var(--info-color);
}

.alert-success .alert-content strong {
  color: var(--success-color);
}

.alert-warning .alert-content strong {
  color: var(--warning-color);
}

/* ===== SECTION STYLES ===== */
.content-section {
  margin-bottom: 4rem;
  scroll-margin-top: 2rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--primary-color);
  display: flex;
  align-items: center;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.subsection {
  margin-bottom: 3rem;
}

.subsection-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 4px solid var(--secondary-color);
}

/* ===== FEATURE GRID ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-lighter);
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.feature-icon i {
  color: white;
  font-size: 1.25rem;
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

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

/* ===== CARD GRID ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.card-item {
  padding: 1.5rem;
  background: var(--bg-lighter);
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.card-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  flex-shrink: 0;
}

.card-icon i {
  color: white;
  font-size: 1.25rem;
}

.card-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.card-item p {
  color: var(--text-medium);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== COMPARISON CARDS ===== */
.comparison-cards {
  margin: 2rem 0;
}

.comparison-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* Card Theme Variations */
.primary-theme {
  border-color: var(--primary-color);
}

.primary-theme .card-header {
  background: var(--gradient-primary);
}

.secondary-theme {
  border-color: var(--secondary-color);
}

.secondary-theme .card-header {
  background: var(--gradient-secondary);
}

.accent-theme {
  border-color: var(--accent-color);
}

.accent-theme .card-header {
  background: var(--gradient-accent);
}

/* Legacy support */
.sole-custody {
  border-color: var(--primary-color);
}

.sole-custody .card-header {
  background: var(--gradient-primary);
}

.joint-custody {
  border-color: var(--secondary-color);
}

.joint-custody .card-header {
  background: var(--gradient-secondary);
}

.comparison-card .card-header {
  color: white;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.comparison-card .card-header i {
  font-size: 1.5rem;
}

.comparison-card .card-header h4 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.comparison-card .card-body {
  padding: 2rem;
}

.advantages, .when-awarded, .requirements {
  margin-bottom: 1.5rem;
}

.advantages h5, .when-awarded h5, .requirements h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.comparison-card ul {
  margin: 0;
  padding-left: 1.25rem;
}

.comparison-card li {
  color: var(--text-medium);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== SIDEBAR STYLES ===== */
.sticky-sidebar {
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.sidebar-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.sidebar-card h5, .sidebar-card h6 {
  color: var(--text-dark);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-color);
}

.sidebar-card h6 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}

.sidebar-card .list-unstyled {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-card .list-unstyled li {
  margin-bottom: 0.75rem;
}

.sidebar-card .toc-link,
.toc-container a {
  color: var(--text-medium);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  display: block;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.sidebar-card .toc-link:hover,
.toc-container a:hover {
  color: var(--primary-color);
  background-color: var(--bg-light);
  border-left-color: var(--primary-color);
  transform: translateX(4px);
  text-decoration: none;
}

/* Legacy TOC container support */
.toc-container {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.toc-container h5 {
  color: var(--text-dark);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-color);
}

.toc-container ul {
  margin: 0;
  padding: 0;
}

.toc-container li {
  margin-bottom: 0.75rem;
}

/* ===== CTA BOXES ===== */
.cta-box {
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.cta-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cta-box.bg-primary {
  background: var(--gradient-primary);
  color: white;
}

.cta-box.bg-info {
  background: var(--gradient-secondary);
  color: white;
}

.cta-box.bg-secondary {
  background: var(--gradient-secondary);
  color: white;
}

.cta-box h6 {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.cta-box p {
  margin-bottom: 1rem;
  opacity: 0.95;
  line-height: 1.5;
}

.btn-light {
  background: white;
  border: none;
  color: var(--primary-color);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-light:hover {
  background: var(--bg-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* ===== ACCORDION STYLES ===== */
.accordion {
  margin: 2rem 0;
}

.accordion-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 0.75rem !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: var(--shadow-md);
}

.accordion-header h3 {
  margin: 0;
}

.accordion-button {
  background: var(--bg-light);
  border: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.5rem;
  border-radius: 0.75rem !important;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: white;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(180deg);
}

.accordion-collapse {
  border-top: 1px solid var(--border-color);
}

.accordion-body {
  padding: 2rem;
  color: var(--text-medium);
  line-height: 1.7;
  background: white;
}

/* ===== SPECIAL BOXES ===== */
.highlight-box {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #f59e0b;
  border-radius: 0.75rem;
  padding: 2rem;
  margin: 2rem 0;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.highlight-box::before {
  content: '💡';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  background: #f59e0b;
  padding: 0.5rem;
  border-radius: 50%;
  font-size: 1.25rem;
}

.highlight-box strong {
  color: #92400e;
  font-weight: 700;
}

.highlight-box p {
  margin: 0;
  color: #92400e;
  line-height: 1.6;
}

.warning-box {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 1px solid var(--accent-color);
  border-radius: 0.75rem;
  padding: 2rem;
  margin: 2rem 0;
  border-left: 4px solid var(--accent-color);
}

.warning-box strong {
  color: var(--accent-color);
  font-weight: 700;
}

.gold-nugget {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 2px solid #f59e0b;
  border-radius: 1rem;
  padding: 2rem;
  margin: 3rem 0;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.gold-nugget::before {
  content: '⭐';
  position: absolute;
  top: -1rem;
  left: 2rem;
  background: #f59e0b;
  color: white;
  padding: 0.75rem;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
}

.gold-nugget strong {
  color: #92400e;
  font-weight: 700;
  font-size: 1.1rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
  .brand-logo {
    margin-right: 1rem;
    padding: 0.4rem 0.8rem;
  }
  
  .brand-icon-wrapper {
    width: 40px;
    height: 40px;
    margin-right: 0.5rem;
  }
  
  .brand-icon-wrapper i {
    font-size: 1.25rem;
  }
  
  .brand-title {
    font-size: 1.1rem;
  }
  
  .brand-subtitle {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .content-container {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .feature-grid,
  .card-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .comparison-cards .col-md-6 {
    margin-bottom: 1rem;
  }
  
  .hero-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .toc-container,
  .sidebar-card {
    padding: 1.5rem;
  }
  
  .sticky-sidebar {
    position: static;
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .brand-content {
    display: none;
  }
  
  .brand-logo {
    padding: 0.5rem;
    margin-right: 0.5rem;
  }
  
  .brand-icon-wrapper {
    margin-right: 0;
  }

  .hero-section {
    padding: 3rem 0 2rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .content-container {
    padding: 1.5rem 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .comparison-card .card-body {
    padding: 1.5rem;
  }
  
  .accordion-button {
    padding: 1rem;
    font-size: 1rem;
  }
  
  .accordion-body {
    padding: 1.5rem;
  }
}

/* ===== SMOOTH ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.content-section {
  animation: fadeInUp 0.6s ease-out;
}

.feature-item,
.card-item {
  animation: fadeInUp 0.6s ease-out;
  animation-delay: 0.1s;
  animation-fill-mode: both;
}

.comparison-card {
  animation: fadeInUp 0.6s ease-out;
  animation-delay: 0.1s;
  animation-fill-mode: both;
}

/* ===== PRINT STYLES ===== */
@media print {
  .navbar, .sticky-sidebar, .cta-box {
    display: none !important;
  }
  
  .content-container {
    box-shadow: none;
    border: 1px solid #ddd;
  }
  
  .hero-section {
    background: none !important;
    color: #000 !important;
    padding: 1rem 0;
  }
  
  .section-title {
    color: #000 !important;
  }
  
  .feature-item, .card-item, .comparison-card {
    box-shadow: none;
    border: 1px solid #ddd;
    break-inside: avoid;
  }
}