/* Local Up Lab Website Styles - Updated with more fun elements */
:root {
  /* Brand Colors */
  --lime-green-primary: #afe841;
  --lime-green-secondary: #87da06;
  --lime-green-tertiary: #9dcc36;
  --cyan-primary: #88d8ef;
  --cyan-secondary: #5ce1e6;
  --dark-navy: #0d1424;
  --hot-pink: #ff1493; /* Adding hot pink from logo */
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #333333;
  
  /* Font Families */
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Open Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-navy);
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: var(--lime-green-secondary);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--cyan-secondary);
}

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

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

/* Header Styles - Updated for better logo visibility */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px; /* Increased logo size */
  width: auto;
  filter: drop-shadow(0 0 8px rgba(255, 20, 147, 0.3)); /* Added glow effect to logo */
  transition: all 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px rgba(255, 20, 147, 0.5));
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  font-weight: 600;
  font-size: 18px; /* Increased font size */
  color: var(--dark-navy);
  position: relative;
}

.nav-menu a:hover {
  color: var(--hot-pink); /* Changed hover color to hot pink */
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px; /* Thicker underline */
  bottom: -5px;
  left: 0;
  background: linear-gradient(to right, var(--hot-pink), var(--cyan-secondary)); /* Gradient underline */
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark-navy);
}

/* Hero Section - Updated with more fun elements */
.hero {
  background: linear-gradient(135deg, var(--dark-navy) 0%, #1a2a4a 100%);
  color: var(--white);
  padding: 180px 0 120px; /* Increased padding */
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/pattern.svg');
  background-size: cover;
  opacity: 0.15; /* Increased opacity */
  animation: float 20s infinite alternate ease-in-out; /* Added animation */
}

@keyframes float {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-20px) scale(1.1);
  }
}

/* Added bubbles animation */
.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  animation: bubble-float 15s infinite ease-in-out;
}

.bubble-1 {
  width: 100px;
  height: 100px;
  background-color: var(--lime-green-primary);
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.bubble-2 {
  width: 60px;
  height: 60px;
  background-color: var(--cyan-primary);
  top: 60%;
  left: 15%;
  animation-delay: 2s;
}

.bubble-3 {
  width: 80px;
  height: 80px;
  background-color: var(--hot-pink);
  top: 30%;
  right: 20%;
  animation-delay: 1s;
}

.bubble-4 {
  width: 40px;
  height: 40px;
  background-color: var(--lime-green-secondary);
  bottom: 20%;
  right: 10%;
  animation-delay: 3s;
}

@keyframes bubble-float {
  0% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-30px) translateX(15px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

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

.hero h1 {
  font-size: 3.5rem; /* Increased font size */
  margin-bottom: 1.5rem;
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Added text shadow */
}

.hero h1 span {
  color: var(--lime-green-primary);
  position: relative;
  display: inline-block;
}

/* Added highlight effect to span */
.hero h1 span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: 5px;
  left: 0;
  background-color: var(--hot-pink);
  opacity: 0.3;
  z-index: -1;
  transform: skewX(-10deg);
}

.hero p {
  font-size: 1.4rem; /* Increased font size */
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: var(--lime-green-secondary);
  color: var(--white);
  padding: 16px 32px; /* Larger padding */
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem; /* Larger font */
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(135, 218, 6, 0.4);
  position: relative;
  overflow: hidden;
}

/* Added button animation */
.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: var(--lime-green-primary);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(135, 218, 6, 0.6);
  color: var(--white);
}

.secondary-button {
  background: transparent;
  border: 2px solid var(--hot-pink); /* Changed to hot pink */
  color: var(--hot-pink);
  box-shadow: none;
}

.secondary-button:hover {
  background: var(--hot-pink);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

/* About Section - Updated with more fun elements */
.about {
  padding: 120px 0; /* Increased padding */
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Added decorative elements */
.about::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--cyan-primary);
  opacity: 0.1;
  z-index: 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 3rem; /* Larger title */
  display: inline-block;
  background: linear-gradient(45deg, var(--dark-navy), var(--hot-pink)); /* Gradient text */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 100px; /* Wider underline */
  height: 5px; /* Thicker underline */
  background: linear-gradient(to right, var(--lime-green-secondary), var(--cyan-secondary)); /* Gradient underline */
  margin: 15px auto 0;
  border-radius: 5px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text p {
  font-size: 1.1rem; /* Larger text */
  position: relative;
}

/* Added highlight to important text */
.highlight {
  background: linear-gradient(180deg, transparent 50%, rgba(92, 225, 230, 0.2) 50%);
  padding: 0 5px;
  font-weight: 600;
}

.about-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.about-image img {
  border-radius: 20px; /* Rounder corners */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); /* Stronger shadow */
  transform: rotate(2deg); /* Slight rotation for fun */
  transition: all 0.5s ease;
}

.about-image:hover img {
  transform: rotate(0deg) scale(1.02);
}

.about-image::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid var(--hot-pink); /* Changed to hot pink */
  border-radius: 20px;
  top: 15px;
  left: 15px;
  z-index: -1;
  transform: rotate(-2deg); /* Opposite rotation */
}

/* Benefits Section - Updated with more fun elements */
.benefits {
  padding: 120px 0; /* Increased padding */
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: var(--lime-green-primary);
  opacity: 0.1;
  border-radius: 50%;
  transform: translate(150px, -150px);
}

/* Added zigzag pattern */
.zigzag {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(45deg, var(--light-gray) 25%, transparent 25%) 0 0,
              linear-gradient(-45deg, var(--light-gray) 25%, transparent 25%) 0 0,
              linear-gradient(45deg, transparent 75%, var(--light-gray) 75%) 0 0,
              linear-gradient(-45deg, transparent 75%, var(--light-gray) 75%) 0 0;
  background-size: 20px 20px;
  background-color: var(--cyan-primary);
  opacity: 0.3;
}

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

.benefit-card {
  background-color: var(--white);
  border-radius: 20px; /* Rounder corners */
  padding: 40px 30px; /* More padding */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); /* Stronger shadow */
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.benefit-card:hover {
  transform: translateY(-15px) scale(1.03); /* More dramatic hover effect */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Added colorful top border */
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(to right, var(--lime-green-secondary), var(--cyan-secondary), var(--hot-pink));
  transition: height 0.3s ease;
}

.benefit-card:hover::before {
  height: 12px;
}

/* Added background shape */
.benefit-card::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--lime-green-primary);
  opacity: 0.1;
  z-index: -1;
  transition: all 0.3s ease;
}

.benefit-card:hover::after {
  transform: scale(1.5);
}

.benefit-icon {
  font-size: 3rem; /* Larger icon */
  margin-bottom: 25px;
  color: var(--hot-pink); /* Changed to hot pink */
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.2) rotate(10deg);
}

.benefit-card h3 {
  font-size: 1.6rem; /* Larger heading */
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.benefit-card h3::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  bottom: -10px;
  left: 0;
  background-color: var(--lime-green-secondary);
}

.benefit-card p {
  font-size: 1.1rem; /* Larger text */
}

/* How It Works Section - Updated with more fun elements */
.how-it-works {
  padding: 120px 0; /* Increased padding */
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Added background elements */
.how-it-works::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--medium-gray), var(--medium-gray) 10px, transparent 10px, transparent 20px);
  opacity: 0.5;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px; /* Increased gap */
  margin-top: 70px; /* More margin */
  position: relative;
  z-index: 1;
}

.step {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  text-align: center;
  padding: 40px 30px; /* More padding */
  position: relative;
  background-color: var(--white);
  border-radius: 20px; /* Rounder corners */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Added shadow */
  transition: all 0.4s ease;
}

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

.step-number {
  width: 70px; /* Larger circle */
  height: 70px;
  background-color: var(--dark-navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem; /* Larger number */
  font-weight: 700;
  margin: 0 auto 25px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.step:hover .step-number {
  transform: scale(1.1) rotate(10deg);
}

.step:nth-child(1) .step-number {
  background-color: var(--lime-green-secondary);
}

.step:nth-child(2) .step-number {
  background-color: var(--cyan-secondary);
}

.step:nth-child(3) .step-number {
  background-color: var(--hot-pink);
}

.step:nth-child(4) .step-number {
  background-color: var(--lime-green-tertiary);
}

.step h3 {
  margin-bottom: 20px;
  font-size: 1.5rem; /* Larger heading */
  position: relative;
  display: inline-block;
}

.step p {
  font-size: 1.1rem; /* Larger text */
}

/* Added step connector with animation */
.step-connector {
  position: absolute;
  top: 35px;
  right: -55px;
  width: 70px;
  height: 2px;
  background-color: var(--medium-gray);
  z-index: 1;
}

.step-connector::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--medium-gray);
  border-right: 2px solid var(--medium-gray);
  transform: rotate(45deg);
  animation: arrow-pulse 1.5s infinite;
}

@keyframes arrow-pulse {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}

/* Results Section - Updated with smaller font size */
.results {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--dark-navy) 0%, #1a2a4a 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.results::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/pattern.svg');
  background-size: cover;
  opacity: 0.1;
}

.results .section-title h2 {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}

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

.result-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.result-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.result-number {
  font-size: 2.5rem; /* Reduced font size */
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--lime-green-primary), var(--cyan-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: block; /* Ensure full visibility */
  word-break: break-word; /* Prevent overflow */
  line-height: 1.2;
}

.result-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.result-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

/* FAQ Section - New section */
.faq {
  padding: 120px 0;
  background-color: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 20px 30px;
  background-color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 5px solid var(--lime-green-secondary);
}

.faq-question h3 {
  font-size: 1.2rem;
  margin-bottom: 0;
}

.faq-question i {
  font-size: 1.2rem;
  color: var(--dark-navy);
  transition: all 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: var(--light-gray);
}

.faq-item.active .faq-answer {
  padding: 20px 30px;
  max-height: 1000px;
}

/* CTA Section */
.cta {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--dark-navy) 0%, #1a2a4a 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.cta-shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--lime-green-primary);
  top: -150px;
  left: -150px;
}

.cta-shape-2 {
  width: 200px;
  height: 200px;
  background-color: var(--hot-pink);
  bottom: -100px;
  right: -100px;
}

.cta h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--white);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--body-font);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--lime-green-secondary);
  background-color: rgba(255, 255, 255, 0.15);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Footer */
footer {
  background-color: var(--dark-navy);
  color: var(--white);
  padding: 80px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
}

.footer-shape-1 {
  width: 400px;
  height: 400px;
  background-color: var(--lime-green-primary);
  top: -200px;
  right: -200px;
}

.footer-shape-2 {
  width: 300px;
  height: 300px;
  background-color: var(--hot-pink);
  bottom: -150px;
  left: -150px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  flex: 1;
  min-width: 300px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 20px;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  max-width: 400px;
}

.footer-contact {
  flex: 1;
  min-width: 250px;
}

.footer-contact h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-contact h3::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  bottom: -10px;
  left: 0;
  background: linear-gradient(to right, var(--lime-green-secondary), var(--cyan-secondary));
}

.contact-info p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
  margin-right: 10px;
  color: var(--lime-green-secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
  }
  
  .steps {
    flex-direction: column;
    align-items: center;
  }
  
  .step {
    max-width: 100%;
  }
  
  .step-connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 15px;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    z-index: 1001;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu li {
    margin: 20px 0;
  }
  
  .mobile-menu-btn {
    display: block;
    z-index: 1002;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .about-content, .footer-content {
    flex-direction: column;
  }
  
  .about-image::before {
    display: none;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .benefit-card, .step, .result-card {
    padding: 30px 20px;
  }
  
  .cta h2 {
    font-size: 2rem;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 150px 0 100px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .about, .benefits, .how-it-works, .results, .faq, .cta {
    padding: 80px 0;
  }
  
  .result-number {
    font-size: 2rem;
  }
  
  .result-card h3 {
    font-size: 1.3rem;
  }
  
  .footer {
    padding: 60px 0 20px;
  }
}
