

/* Root variables */
:root {
  --primary: #6772e5;
  --primary-dark: #5469d4;
  --secondary: #24b47e;
  --tertiary: #e25950;
  --accent: #f6a4eb;
  --accent2: #61dafb;
  --accent3: #fd7e14;
  --accent4: #20c997;
  --dark: #32325d;
  --light: #f6f9fc;
  --gray: #8898aa;
  --gradient-1: linear-gradient(90deg, #6772e5 0%, #9b82f3 100%);
  --gradient-2: linear-gradient(90deg, #24b47e 0%, #4adbc8 100%);
  --gradient-3: linear-gradient(135deg, #ff0080, #ff8c00 40%, #ffff00 60%, #00ff80);
  --box-shadow: 0 13px 27px -5px rgba(50, 50, 93, 0.25), 0 8px 16px -8px rgba(0, 0, 0, 0.3);
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
}

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

/* Header */
/* 
COMPLETE MOBILE HEADER CSS
The full CSS needed for the mobile header to work properly 
*/

/* Basic header styling (preserving existing styles) */
header {
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.95));
  z-index: -1;
}

/* Basic nav styling */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo styling */
.logo {
  display: flex;
  align-items: center;
}

.logo svg {
  display: block;
  max-height: 75px;
  width: auto;
}

/* Navigation links - default desktop view */
.nav-links {
  display: flex;
  gap: 30px;
}

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

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

/* Action buttons container */
.nav-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Mobile menu toggle button - hidden by default on desktop */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
  padding: 0;
  margin: 0;
  z-index: 1000;
}

.menu-toggle:focus {
  outline: none;
}

/* Mobile overlay - hidden by default */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* MOBILE STYLES */
@media (max-width: 992px) {
  /* Make the navigation container take full width */
  nav {
    justify-content: space-between;
    /* Let the logo and menu toggle share a row, force everything else to next line */
    flex-wrap: wrap;
  }
  
  /* Show the menu toggle button */
  .menu-toggle {
    display: block;
  }
  
  /* Off-canvas navigation menu styling */
  .nav-links {
    /* Initial position off-screen */
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: white;
    
    /* Change to column layout */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    
    /* Smooth transition */
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  
  /* When menu is active, slide it into view */
  .nav-links.active {
    right: 0;
  }
  
  /* Adjusting the link spacing in mobile menu */
  .nav-links a {
    margin: 15px 0;
    font-size: 1.2rem;
  }
  
  /* Hide the action buttons by default */
  .nav-right {
    display: none;
  }
  
  /* When menu is active, show buttons at the bottom */
  .nav-right.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 50px;
    right: 0;
    width: 80%;
    max-width: 300px;
    align-items: center;
    z-index: 999;
  }
  
  /* Adjust button spacing */
  .nav-right .btn {
    margin: 10px 0;
    width: 80%;
    text-align: center;
  }
  
  /* When overlay is active, show it */
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Prevent body scrolling when menu is open */
  body.no-scroll {
    overflow: hidden;
  }
}

/* Smaller mobile device adjustments */
@media (max-width: 576px) {
  /* Reduce padding */
  header {
    padding: 15px 0;
  }
  
  /* Make logo smaller */
  .logo svg {
    width: 200px;
    height: auto;
  }
  
  /* Take full width for the menu */
  .nav-links {
    width: 100%;
    max-width: none;
  }
  
  /* Take full width for the buttons */
  .nav-right.active {
    width: 100%;
    max-width: none;
  }
  
  /* Smaller buttons */
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent2));
  background-size: 200% 100%;
  z-index: -1;
  transition: all 0.5s ease;
  opacity: 0;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.3), 0 3px 6px rgba(0, 0, 0, 0.15);
}

.btn:hover::before {
  opacity: 1;
  background-position: 100% 0;
}

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

.btn-secondary::before {
  background: linear-gradient(90deg, rgba(247, 250, 252, 1), rgba(236, 246, 254, 1));
}

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

/* Hero Section */
.hero {
  padding: 100px 0;
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.animated-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab, #7928ca, #ff0080);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  z-index: 0;
}

@keyframes gradient {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(to right, #fff, rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.9;
  text-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.hero-btns {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.hero-image {
  position: absolute;
  right: -100px;
  bottom: -50px;
  width: 55%;
  max-width: 700px;
  z-index: 1;
  opacity: 0.9;
  filter: drop-shadow(0 0 20px rgba(0,0,0,0.2));
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 100px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 25%, var(--accent3) 50%, var(--accent4) 75%, var(--primary) 100%);
  top: 0;
  left: -25%;
  transform: rotate(-2deg) translateY(-70%);
  z-index: 1;
  opacity: 0.7;
}

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

.section-heading h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.section-heading p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

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

.feature-card {
  padding: 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, var(--primary), var(--accent2), var(--accent3), var(--accent4));
  background-size: 400% 400%;
  z-index: -1;
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card:hover::before {
  opacity: 0.7;
  animation: animateGradient 3s ease infinite;
}

@keyframes animateGradient {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.icon-1 {
  background: var(--gradient-1);
  color: white;
}

.icon-2 {
  background: var(--gradient-2);
  color: white;
}

.icon-3 {
  background: linear-gradient(90deg, var(--tertiary) 0%, var(--accent) 100%);
  color: white;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.feature-card p {
  color: var(--gray);
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}

.how-it-works::after {
  content: '';
  position: absolute;
  width: 150%;
  height: 100px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 25%, var(--accent2) 50%, var(--accent3) 75%, var(--accent4) 100%);
  bottom: 0;
  right: -25%;
  transform: rotate(-2deg) translateY(70%);
  z-index: 1;
  opacity: 0.7;
}

.process-steps {
  display: flex;
  flex-direction: row;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.step {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.step-content p {
  color: var(--gray);
  margin-bottom: 15px;
}

.step-image {
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  margin-top: 20px;
}

.bg-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  background-color: var(--primary);
  opacity: 0.03;
  border-radius: 50%;
  right: -200px;
  top: -200px;
  z-index: 1;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: white;
}

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

.testimonial-card {
  padding: 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(103, 114, 229, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0;
  transform: scale(0.5);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.testimonial-card p {
  color: var(--gray);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--light);
  overflow: hidden;
}

.author-info h4 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 5px;
}

.author-info p {
  font-size: 0.9rem;
  margin-bottom: 0;
  font-style: normal;
}

/* Pricing Section */
/* Updated Pricing Section Styles */
.pricing {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f9f9ff 0%, #e6f7ff 50%, #f0f8ff 100%);
  overflow: hidden;
}

/* Background gradient elements */
.pricing::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 100%;
  background: linear-gradient(135deg, rgba(121, 40, 202, 0.05), rgba(255, 0, 128, 0.05), rgba(103, 114, 229, 0.05), rgba(36, 180, 126, 0.05));
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  top: 0;
  left: -25%;
  z-index: 0;
  transform: skewY(-6deg);
  transform-origin: top left;
}

.pricing::after {
  content: '';
  position: absolute;
  width: 150%;
  height: 60%;
  background: linear-gradient(135deg, rgba(255, 126, 20, 0.05), rgba(121, 40, 202, 0.05), rgba(36, 180, 126, 0.05), rgba(97, 218, 251, 0.05));
  background-size: 300% 300%;
  animation: gradientMove 12s ease-in-out infinite alternate;
  bottom: -20%;
  right: -25%;
  z-index: 0;
  transform: skewY(8deg);
  transform-origin: bottom right;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.pricing-header h2 {
  font-size: 2.8rem;
  color: var(--dark);
  max-width: 800px;
  margin: 0 auto 20px;
}

.pricing-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  overflow: visible; /* Ensure it doesn't clip the banner */
}

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
  overflow: visible; /* Ensure it doesn't clip the banner */
}

.pricing-card {
  background-color: white;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tier-label {
  display: inline-block;
  background-color: rgba(103, 114, 229, 0.1);
  color: var(--primary);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
  line-height: 1;
}

.price-duration {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray);
}

.setup-fee {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-style: italic;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
  padding: 10px 0;
  color: var(--gray);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 25px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

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

.pricing-card.featured {
  padding-top: 50px; /* Increased top padding for more space */
  border: none;
  position: relative;
  z-index: 2;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: visible; /* Ensure overflow is visible for the banner */
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, rgba(103, 114, 229, 0.05), rgba(246, 164, 235, 0.05), rgba(97, 218, 251, 0.05), rgba(253, 126, 20, 0.05));
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  z-index: -1;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.featured-tag {
  position: absolute;
  top: -20px; /* Increased negative value to move it higher */
  left: 50%;
  transform: translateX(-50%);
  background-color: #6366f1;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 20; /* Increased z-index to ensure it's above any other elements */
  box-shadow: 0 3px 10px rgba(99, 102, 241, 0.3);
  white-space: nowrap;
}


/* Setup info section */
.setup-info {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 60px;
}

.setup-info h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 20px;
}

.setup-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  list-style: none;
}

.setup-features li {
  position: relative;
  padding-left: 25px;
  color: var(--gray);
}

.setup-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

/* Pricing tabs */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.pricing-tab {
  background-color: white;
  border: none;
  border-radius: 30px;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pricing-tab.active, .pricing-tab:hover {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 5px 15px rgba(103, 114, 229, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-header h2 {
    font-size: 2.2rem;
  }

  .how-it-works {
    padding: 60px 0;
  }

  .process-steps {
    flex-direction: column;
    gap: 40px;
  }

  .step-content {
    width: 100%;
  }

  .how-it-works .section-heading h2 {
    font-size: 2rem;
  }
  
  .how-it-works .section-heading p {
    font-size: 1rem;
  }
  
  .step-image {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .setup-features {
    grid-template-columns: 1fr;
  }
  
  .pricing-tabs {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .how-it-works {
    padding: 40px 0;
  }
  
  /* Adjust step styling for better mobile display */
  .step {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Center align the step number for better visual effect */
  .step-number {
    margin: 0 auto 15px;
  }
  
  /* Center align the headings */
  .step-content h3 {
    text-align: center;
    font-size: 1.3rem;
  }
  
  /* Improve text readability */
  .step-content p {
    font-size: 0.95rem;
    text-align: center;
  }
}

/* CTA Section */
.cta {
  padding: 100px 0;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.animated-background-cta {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #7928ca, #ff0080, #6772e5, #24b47e, #e25950);
  background-size: 400% 400%;
  animation: gradient-cta 10s ease infinite;
  z-index: 0;
}

@keyframes gradient-cta {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

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

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.cta p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
  text-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* Footer */
footer {
  padding: 60px 0;
  background-color: var(--dark);
  color: white;
}

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

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.footer-logo-icon {
  margin-right: 8px;
}

.footer-col p {
  opacity: 0.7;
  margin-bottom: 20px;
}

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

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

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

.footer-links a {
  text-decoration: none;
  color: white;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: white;
  opacity: 0.7;
  transition: opacity 0.3s;
  font-size: 1.2rem;
}

.social-links a:hover {
  opacity: 1;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
      padding: 80px 0;
  }
  
  .hero h1 {
      font-size: 2.5rem;
  }
  
  .hero-image {
      position: relative;
      right: 0;
      bottom: 0;
      width: 100%;
      margin-top: 40px;
  }
  
  .step {
      flex-direction: column;
  }
  
  .step-number {
      margin-bottom: 15px;
  }
  
  .nav-links {
      display: none;
  }
  
  .section-heading h2 {
      font-size: 2rem;
  }
  
  .cta h2 {
      font-size: 2rem;
  }
}