/* 
  Zirethovia - Functional Training
  styles.css
*/

/* ===== RESET & BASE STYLES ===== */
:root {
  --primary: #FF6B35;
  --primary-dark: #E04E1F;
  --secondary: #2E4057;
  --secondary-light: #4A6380;
  --dark: #1A1A1A;
  --light: #F5F5F5;
  --gray: #909090;
  --gray-light: #E0E0E0;
  --success: #48C774;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  
  --transition: all 0.3s ease;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 62.5%; /* 10px = 1rem */
  overflow-x: hidden;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 10rem 0;
  position: relative;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

h1 {
  font-size: 6.4rem;
  letter-spacing: -1px;
}

h2 {
  font-size: 4.8rem;
  margin-bottom: 3rem;
}

h2 span {
  color: var(--primary);
}

h3 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 2rem;
}

.section-tag {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-header {
  margin-bottom: 5rem;
}

.center-align {
  text-align: center;
}

.left-align {
  text-align: left;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 1.5rem 3rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
  background-color: var(--secondary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

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

.btn-light:hover {
  background-color: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.full-width {
  width: 100%;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  padding: 2rem 0;
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background-color: white;
  box-shadow: var(--shadow);
  padding: 1rem 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo img {
  width: 4rem;
  height: 4rem;
  margin-right: 1rem;
  border-radius: 50%;
  object-fit: cover;
}

.logo span {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 1px;
}

.header.scrolled .logo span {
  color: var(--dark);
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-link {
  margin: 0 1.5rem;
  font-size: 1.6rem;
  font-weight: 600;
}

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

.nav-link.accent {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.hamburger {
  width: 3rem;
  height: 2px;
  background-color: var(--dark);
  position: relative;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 3rem;
  height: 2px;
  background-color: var(--dark);
  transition: var(--transition);
}

.hamburger::before {
  transform: translateY(-10px);
}

.hamburger::after {
  transform: translateY(10px);
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.hero-content {
  flex: 0 0 50%;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 2rem;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 2rem;
  margin-bottom: 3rem;
  max-width: 80%;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
}

.hero-image-container {
  flex: 0 0 45%;
  position: relative;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 70%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow-strong);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

.hero-shape {
  position: absolute;
  width: 100%;
  height: 70%;
  background-color: var(--primary);
  top: 5%;
  right: -5%;
  border-radius: 10px;
  z-index: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--dark);
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 1;
}

.scroll-indicator span {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
  40% {transform: translateY(-15px) translateX(-50%);}
  60% {transform: translateY(-7px) translateX(-50%);}
}

/* ===== ABOUT SECTION ===== */
.about {
  background-color: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.about-card {
  position: absolute;
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.count-card {
  bottom: -3rem;
  right: -3rem;
  width: 15rem;
  text-align: center;
  border-left: 5px solid var(--primary);
}

.counter {
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.count-card span {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--secondary);
}

.about-content {
  padding-top: 3rem;
}

.about-content p {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

.feature-item {
  background-color: var(--light);
  padding: 3rem;
  border-radius: 10px;
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.feature-item h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-item p {
  font-size: 1.6rem;
  margin-bottom: 0;
}

/* ===== APPROACH SECTION ===== */
.approach {
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}

.approach .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.approach-content {
  position: relative;
  z-index: 1;
}

.approach-intro {
  font-size: 1.8rem;
  margin-bottom: 4rem;
}

.approach-pillars {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.pillar-item {
  position: relative;
  padding-left: 8rem;
}

.pillar-item::before {
  content: attr(data-count);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(255, 107, 53, 0.1);
  line-height: 1;
}

.pillar-item h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.approach-visuals {
  position: relative;
}

.approach-image-container {
  width: 100%;
  height: 40rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.approach-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.approach-image-container:hover img {
  transform: scale(1.05);
}

.equipment-showcase {
  background-color: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin-top: -5rem;
  margin-left: 3rem;
  position: relative;
  z-index: 1;
}

.equipment-showcase h3 {
  margin-bottom: 2rem;
}

.equipment-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.equipment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.equipment-item i {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.equipment-item span {
  font-size: 1.4rem;
  font-weight: 600;
}

.approach-background-shape {
  position: absolute;
  width: 100rem;
  height: 100rem;
  border-radius: 50%;
  background-color: rgba(46, 64, 87, 0.03);
  top: -30%;
  left: -20%;
  z-index: 0;
}

/* ===== PROGRAMS SECTION ===== */
.programs {
  background-color: white;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.program-card {
  background-color: var(--light);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.program-card.featured {
  border: 2px solid var(--primary);
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  background-color: white;
}

.program-badge {
  position: absolute;
  top: 2rem;
  right: 0;
  background-color: var(--primary);
  color: white;
  padding: 0.8rem 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 5px 0 0 5px;
}

.program-content {
  padding: 3rem;
}

.program-features {
  margin: 2rem 0;
}

.program-features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.program-features li i {
  color: var(--primary);
  margin-right: 1rem;
}

.program-price {
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
}

.price {
  font-size: 4rem;
  font-weight: 700;
  color: var(--secondary);
}

.unit {
  font-size: 1.6rem;
  color: var(--gray);
  margin-left: 0.5rem;
}

/* ===== RESULTS SECTION ===== */
.results {
  background-color: var(--secondary);
  color: white;
}

.results-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 7rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.stat-label {
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-slider {
  position: relative;
  background-color: white;
  border-radius: 10px;
  padding: 4rem;
  box-shadow: var(--shadow);
  color: var(--dark);
}

.testimonial {
  display: none;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}

.testimonial.active {
  display: grid;
}

.testimonial-image {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--light);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  position: relative;
}

.quote-icon {
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: -2rem;
  left: -2rem;
}

.testimonial-content p {
  font-size: 1.8rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-author h4 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.testimonial-author span {
  font-size: 1.4rem;
  color: var(--gray);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
}

.prev-testimonial,
.next-testimonial {
  background-color: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--secondary);
  cursor: pointer;
  transition: var(--transition);
}

.prev-testimonial:hover,
.next-testimonial:hover {
  color: var(--primary);
}

.testimonial-dots {
  display: flex;
  gap: 1rem;
}

.dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--gray-light);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary);
}

/* ===== TRAINERS SECTION ===== */
.trainers {
  background-color: var(--light);
}

.trainers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.trainer-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.trainer-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.trainer-image {
  position: relative;
  height: 30rem;
  overflow: hidden;
}

.trainer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.trainer-card:hover .trainer-image img {
  transform: scale(1.1);
}

.trainer-socials {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.trainer-card:hover .trainer-socials {
  opacity: 1;
  transform: translateY(0);
}

.social-icon {
  width: 4rem;
  height: 4rem;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.5rem;
  font-size: 1.6rem;
  color: var(--dark);
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.trainer-info {
  padding: 2.5rem;
}

.trainer-title {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.trainer-info p {
  margin-bottom: 0;
}

/* ===== CTA SECTION ===== */
.cta {
  background-color: var(--primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.cta-content h2 {
  color: white;
  margin-bottom: 2rem;
}

.cta-content h2 span {
  color: var(--dark);
}

.cta-content p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

.cta-image {
  height: 40rem;
  border-radius: 10px;
  overflow: hidden;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== CONTACT SECTION ===== */
.contact {
  background-color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info p {
  font-size: 1.8rem;
  margin-bottom: 4rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
}

.contact-item i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-right: 2rem;
  margin-top: 0.5rem;
}

.contact-item h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.contact-form-container {
  background-color: var(--light);
  padding: 4rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  position: relative;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

label {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

input, select, textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid var(--gray-light);
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 1.6rem;
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
}

textarea {
  resize: vertical;
}

.form-success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.form-success.active {
  opacity: 1;
  visibility: visible;
}

.form-success i {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--secondary);
  color: white;
  padding: 6rem 0 3rem;
}

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

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

.footer-logo img {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  margin-right: 1.5rem;
}

.footer-logo span {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social .social-icon {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.footer-middle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  margin-bottom: 4rem;
}

.footer-middle h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.footer-nav ul li {
  margin-bottom: 1rem;
}

.footer-nav a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-hours li {
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
}

.footer-hours span {
  font-weight: 600;
}

.newsletter-form {
  display: flex;
  margin-top: 2rem;
}

.newsletter-form input {
  flex-grow: 1;
  border-radius: 5px 0 0 5px;
  border: none;
}

.newsletter-form button {
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 0 5px 5px 0;
  padding: 0 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: var(--primary-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.4rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

/* ===== ANIMATIONS ===== */
.reveal-text {
  position: relative;
  overflow: hidden;
  display: block;
}

.reveal-text::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  transform: translateX(-100%);
  animation: revealText 1.5s ease forwards;
}

@keyframes revealText {
  0% {transform: translateX(-100%);}
  100% {transform: translateX(100%);}
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  html {
    font-size: 55%;
  }
  
  .hero h1 {
    font-size: 5.5rem;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 50%;
  }
  
  section {
    padding: 8rem 0;
  }
  
  .hero .container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  
  .hero-content {
    flex: 0 0 100%;
    margin-bottom: 5rem;
  }
  
  .hero-subtitle {
    max-width: 100%;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image-container {
    flex: 0 0 100%;
    height: auto;
  }
  
  .hero-image {
    height: 40rem;
  }
  
  .hero-shape {
    height: 40rem;
  }
  
  .about-grid,
  .approach .container,
  .cta .container,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  
  .about-card {
    bottom: -2rem;
    right: 2rem;
  }
  
  .programs-grid,
  .trainers-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .results-stats {
    grid-template-columns: 1fr 1fr;
  }
  
  .testimonial {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .testimonial-image {
    margin: 0 auto 3rem;
  }
  
  .quote-icon {
    display: none;
  }
  
  .footer-middle {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -30rem;
    width: 30rem;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 8rem 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: var(--shadow);
    z-index: 90;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-link {
    margin: 1.5rem 0;
    font-size: 1.8rem;
  }
  
  .menu-toggle {
    display: block;
    z-index: 100;
  }
  
  .menu-toggle.active .hamburger {
    background-color: transparent;
  }
  
  .menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
  }
  
  .menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
  }
  
  h1 {
    font-size: 4.8rem;
  }
  
  h2 {
    font-size: 3.6rem;
  }
  
  .about-features,
  .programs-grid,
  .trainers-grid {
    grid-template-columns: 1fr;
  }
  
  .equipment-icons {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 45%;
  }
  
  .hero h1 {
    font-size: 4.2rem;
  }
  
  .hero-image, .hero-shape {
    height: 30rem;
  }
  
  .results-stats {
    grid-template-columns: 1fr;
  }
  
  .testimonial-slider {
    padding: 3rem 2rem;
  }
  
  .cta-image {
    height: 30rem;
  }
  
  .contact-form-container {
    padding: 3rem 2rem;
  }
}



 .text-wrapper h2, .text-wrapper h3{
  margin-top: 20px;
  margin-bottom: 10px;
}

.text-wrapper h1{
  text-align: center;
  font-size: 3rem;
  margin-bottom: 20px;
}
.text-wrapper h2{
  font-size: 1.5rem;
}

.text-wrapper{
  margin: 30px auto;
  max-width: 1200px;
  padding: 20px;
}