/* Premium Professional Design - Leeds Repair 2026 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;700&display=swap');

:root {
  /* Professional Palette */
  --primary: #1e3a8a;
  /* Deep Navy Blue */
  --primary-light: #2563eb;
  /* Bright Blue */
  --accent: #0ea5e9;
  /* Sky Blue */

  /* Backgrounds */
  --bg-body: #ffffff;
  --bg-alt: #f1f5f9;
  /* Slate 100 */
  --bg-dark: #0f172a;

  /* Text */
  --text-main: #1e293b;
  /* Slate 800 */
  --text-muted: #64748b;
  /* Slate 500 */
  --text-white: #ffffff;

  /* Radius & Shadow */
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

  --container-width: 1200px;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background: var(--bg-body);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

a {
  text-decoration: none;
  transition: 0.2s ease;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Components */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  border: none;
}

.btn-primary {
  background: var(--primary-light);
  color: white;
}

.btn-primary:hover {
  background: var(--primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
}

/* Premium Trust Banner - Above Header */
.trust-banner {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: white;
  padding: 0.75rem 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 2000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.trust-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-banner-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  animation: fadeInUp 0.6s ease-out;
}

.trust-banner-item i {
  font-size: 1.1rem;
  color: #fbbf24;
}

.trust-banner-highlight {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: pulse 2s infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 768px) {
  .trust-banner {
    padding: 0.6rem 0;
  }

  .trust-banner-content {
    gap: 1rem;
    font-size: 0.8rem;
  }

  .trust-banner-item {
    font-size: 0.75rem;
  }
}

/* Header */
header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav a {
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--primary-light);
}

/* Hero Section (Colorful Trust Design) */
.hero {
  padding: 6rem 0;
  /* Rich Navy-to-Royal Blue Gradient */
  background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
  position: relative;
  overflow: hidden;
}

/* Add a subtle pattern overlay for texture/trust */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-text h1 {
  color: white;
  /* White text on blue bg */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-text p {
  font-size: 1.25rem;
  max-width: 90%;
  color: #e2e8f0;
  /* Light grey text */
}

/* Trust Badges in Hero */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white !important;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.trust-badge span {
  color: #4ade80 !important;
  /* Bright Green Checkmark */
  font-weight: bold;
}

/* Service Cards */
/* Add this after the .card definition in style.css */
.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.card-link:hover h3,
.card-link:hover .service-icon {
  color: var(--primary-light);
  transition: color 0.2s ease;
}

/* Existing card styles */
.card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-light);
}

/* Problem Icons */
.problem-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  transition: 0.2s;
}

.problem-card:hover {
  border-color: var(--primary-light);
  background: var(--bg-alt);
}

/* Footer */
footer {
  background: var(--bg-dark);
  color: #cbd5e1;
  padding: 4rem 0 2rem;
}

.footer-title {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a:hover {
  color: white;
}

/* Modern Social Icons */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Individual social icon colors with gradients */
.social-icon:nth-child(1) {
  background: linear-gradient(135deg, #4267B2 0%, #3b5998 100%);
  color: white;
}

.social-icon:nth-child(2) {
  background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
  color: white;
}

.social-icon:nth-child(3) {
  background: linear-gradient(135deg, #E4405F 0%, #d62976 100%);
  color: white;
}

.social-icon:nth-child(4) {
  background: linear-gradient(135deg, #0077B5 0%, #005885 100%);
  color: white;
}

/* Hover effects */
.social-icon:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.social-icon:hover::before {
  left: 100%;
}

/* Pulse animation on hover */
@keyframes socialPulse {

  0%,
  100% {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  }

  50% {
    box-shadow: 0 12px 36px rgba(37, 99, 235, 0.4);
  }
}

.social-icon:hover {
  animation: socialPulse 1.5s infinite;
}

/* Icon sizing */
.social-icon i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.social-icon:hover i {
  transform: scale(1.2) rotate(5deg);
}

/* Hero Form Styles */
.hero-form-container {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
}

.hero-form .form-group {
  margin-bottom: 1rem;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: all 0.2s;
  background: #f8fafc;
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: white;
}

.hero-form textarea {
  resize: vertical;
  min-height: 80px;
}

.hero-form ::placeholder {
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 900px) {
  h1 {
    font-size: 2.5rem;
  }

  .hero {
    background: white;
    padding: 4rem 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-text p {
    margin: 0 auto 1.5rem;
  }

  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-form-container {
    margin-top: 2rem;
    padding: 1.5rem;
  }
}

/* FAQ Accordion Styles */
.faq-section {
  background: #f8fafc;
}

.accordion-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background: white;
  border: 1px solid #e2e8f0;
  margin-bottom: 0.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-header {
  padding: 1.25rem;
  cursor: pointer;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
}

.accordion-header h3 {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
  color: var(--text-main);
}

.accordion-header:hover {
  background: #f1f5f9;
}

.accordion-header.active {
  background: #f0f9ff;
}

.accordion-header.active h3 {
  color: var(--primary);
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  padding: 0 1.25rem;
  background: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  border-top: 1px solid transparent;
}

.accordion-header.active+.accordion-content {
  padding: 1.25rem;
  border-top-color: #e2e8f0;
}


/* Shared Grid & Footer Styles */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 0;
  padding-bottom: 0;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #cbd5e1;
}


/* Premium Review Cards */
.review-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
  border-color: #e2e8f0;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reviewer-initial {
  width: 48px;
  height: 48px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.reviewer-name {
  font-weight: 700;
  color: var(--text-main);
  font-size: 1rem;
}

.reviewer-meta {
  font-size: 0.8rem;
  color: #64748b;
}

.review-stars {
  color: #f59e0b;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.review-text {
  color: #475569;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}


/* Info Feature Cards */
.info-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}

.info-card:hover {
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--primary-light);
}

.info-icon-wrapper {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.info-card h3 {
  margin-bottom: 0.5rem;
  color: var(--text-main);
  font-size: 1.1rem;
}


/* Issue Grid (Laptop Page) */
.issue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.issue-card {
  background: white;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  transition: all 0.2s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.issue-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  color: var(--primary);
}

.issue-icon {
  width: 36px;
  height: 36px;
  background: #f1f5f9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  transition: background 0.2s;
}

.issue-card:hover .issue-icon {
  background: var(--primary-light);
  color: white;
}

/* Modern Service Cards */
.service-card-modern {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
  height: 100%;
}

.service-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.1);
  border-color: #bfdbfe;
}

.service-icon-modern {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-modern {
  background: #2563eb;
  color: white;
  transform: scale(1.1) rotate(-5deg);
}

/* =========================================
   RESPONSIVE DESIGN (Mobile & Tablet)
   ========================================= */

@media (max-width: 1024px) {
  .container {
    padding: 0 1rem;
  }

  .hero-content {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    text-align: center;
  }

  .hero-text {
    order: 1;
    margin-bottom: 2rem;
  }

  .hero-form-container {
    order: 2;
    max-width: 600px;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    margin: 0 auto 2rem auto;
  }

  .hero-text .trust-badge {
    justify-content: center;
  }

  .hero-text div[style*="display: flex"] {
    justify-content: center;
  }
}

@media (max-width: 768px) {

  /* Mobile Menu Toggle */
  .mobile-toggle {
    display: block !important;
  }

  /* Navigation - Modern Mobile Menu */
  nav {
    order: 3;
    width: 0;
    /* Prevent taking space in flow */
    height: 0;
  }

  nav ul {
    display: none;
    flex-direction: column;

    /* Fixed Positioning to escape container overflow */
    position: fixed;
    left: 0;
    right: 0;
    /* Approx header height + trust banner. 
           User can scroll if needed. Using a safe margin. */
    top: 110px;
    width: 100%;
    height: auto;
    max-height: 80vh;
    overflow-y: auto;

    /* Modern Look */
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 10000;
    /* Extremely high to sit on top */

    /* Animation Hidden State */
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  nav ul.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  nav ul li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  }

  nav ul li a {
    display: block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s ease;
  }

  nav ul li a:active,
  nav ul li a:hover {
    background: #eff6ff;
    color: var(--primary);
    padding-left: 2.5rem;
    /* Slide Effect */
  }

  /* Rest existing responsive logic */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr !important;
  }

  .hero-form-container {
    padding: 1.5rem !important;
  }

  .form-group input,
  .form-group select {
    font-size: 16px !important;
    padding: 0.7rem !important;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .nav-container {
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    position: relative;
    padding: 0.5rem 0;
  }

  .logo {
    flex-grow: 0;
    /* Don't expand, just be natural width */
    margin-right: auto;
    /* Push everything else right */
  }

  /* Trust Banner - 2x2 Grid for Mobile */
  .trust-banner-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem !important;
    /* Row gap 0.5rem, Col gap 1rem */
    width: 100%;
    padding: 0 1rem;
  }

  .trust-banner-item {
    justify-content: center;
    text-align: center;
    margin: 0 !important;
    font-size: 0.75rem !important;
    white-space: nowrap;
    /* Prevent breaking "No Fix" etc */
  }

  .trust-banner-item span {
    display: inline-block;
  }

  .container {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
}

/* Toggle Button Style */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary);
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 480px) {
  .hero-form-container {
    padding: 1rem !important;
  }

  .logo {
    font-size: 1.2rem;
  }
}
/* Experts Section & Responsive Fixes */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-card {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.95;
    font-weight: 600;
}

.workshop-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
}

.floating-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid #fbbf24;
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .workshop-card {
        padding: 1.5rem !important;
        margin-top: 2rem;
    }
    
    .floating-badge {
        position: relative;
        top: 0;
        right: 0;
        margin: 0 auto 1.5rem auto;
        justify-content: center;
        width: fit-content;
        animation: none;
    }
}

/* Mobile Hero Fix - Brute Force */
@media (max-width: 768px) {
    .hero {
        background-color: #0f172a !important;
        background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%) !important;
        position: relative;
        z-index: 1;
        padding: 4rem 1rem !important;
        color: white !important;
    }
    .hero h1 {
        color: white !important;
    }
    .hero p {
        color: #cbd5e1 !important;
    }
}
