/* 
* Suprafairy.shop - Funktionell Träning CSS
* Author: Claude
* Version: 1.0
*/

/* ------------------------------
   Base Styles & CSS Variables
------------------------------ */
:root {
  --color-primary: #3a5a40;
  --color-secondary: #6b9080;
  --color-tertiary: #a4c3b2;
  --color-light: #cce3de;
  --color-beige: #f2f1e9;
  --color-sand: #e0d4ae;
  --color-brown: #926c4b;
  --color-blue: #70a9a1;
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Lora', serif;
  
  --transition: all 0.3s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

a {
  text-decoration: none;
  color: var(--color-secondary);
  transition: var(--transition);
}

a:hover {
  color: var(--color-primary);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
}

.btn-primary:hover {
  background-color: #2c4532;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: white;
}

.btn-secondary:hover {
  background-color: #5a7a6b;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.text-center {
  text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

img {
  max-width: 100%;
  height: auto;
}

/* ------------------------------
   Header & Navigation
------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.header.scrolled {
  padding: 0.5rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  transition: var(--transition);
}

.header.scrolled .logo img {
  height: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--color-primary);
  transition: var(--transition);
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    margin: 1rem 0;
  }
}

/* ------------------------------
   Hero Section
------------------------------ */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(204, 227, 222, 0.4), rgba(164, 195, 178, 0.4));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--color-secondary);
  animation: fadeInUp 1s ease-out 0.3s;
  animation-fill-mode: both;
}

.hero-btn {
  animation: fadeInUp 1s ease-out 0.6s;
  animation-fill-mode: both;
}

.hero-image {
  position: absolute;
  right: -5%;
  bottom: -10%;
  width: 50%;
  opacity: 0.8;
  animation: float 6s ease-in-out infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ------------------------------
   About Section
------------------------------ */
.about {
  background-color: var(--color-beige);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: var(--color-light);
  border-radius: 0 0 0 300px;
  opacity: 0.3;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.about-text {
  flex: 1;
}

.about-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.about-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--color-secondary);
}

.about-description {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 15px 15px 0 var(--color-tertiary);
  transition: var(--transition);
}

.about-image:hover {
  transform: translateY(-10px);
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .about-image {
    order: -1;
  }
}

/* ------------------------------
   Benefits Section
------------------------------ */
.benefits {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.benefits::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 300px;
  height: 300px;
  background-color: var(--color-light);
  border-radius: 50%;
  opacity: 0.2;
}

.benefits-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background-color: var(--color-tertiary);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-card:hover::before {
  height: 100%;
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
  color: var(--color-primary);
}

.benefit-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.benefit-description {
  color: #666;
  font-size: 0.95rem;
}

/* ------------------------------
   How It Works Section
------------------------------ */
.how-it-works {
  background: linear-gradient(135deg, var(--color-beige) 0%, white 100%);
  padding: 6rem 0;
}

.how-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.how-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: #666;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 70px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--color-tertiary);
  z-index: 1;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 120px;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  transition: var(--transition);
}

.step:hover .step-number {
  transform: scale(1.1);
  background-color: var(--color-primary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-title {
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 0.8rem;
  text-align: center;
  color: #666;
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .process-steps::before {
    left: 50%;
    top: 60px;
    bottom: 60px;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
  }
  
  .step {
    width: 100%;
    max-width: 300px;
  }
}

/* ------------------------------
   Programs Section
------------------------------ */
.programs {
  background-color: white;
  padding: 6rem 0;
  position: relative;
}

.programs::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('images/prog.jpg') center/cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.programs-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.programs-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: #666;
}

.program-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.program-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.program-header {
  background-color: var(--color-primary);
  color: white;
  padding: 1.5rem;
  text-align: center;
}

.program-title {
  color: white;
  margin-bottom: 0.5rem;
}

.program-level {
  font-size: 0.9rem;
  opacity: 0.8;
}

.program-content {
  padding: 2rem;
}

.program-description {
  margin-bottom: 1.5rem;
}

.program-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.program-feature {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
}

.program-feature::before {
  content: '✓';
  color: var(--color-secondary);
  font-weight: bold;
  margin-right: 0.8rem;
}

.program-footer {
  padding: 0 2rem 2rem;
  text-align: center;
}

.program-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.program-period {
  font-size: 0.9rem;
  color: #666;
}

/* ------------------------------
   Testimonials Section
------------------------------ */
.testimonials {
  background-color: var(--color-beige);
  padding: 6rem 0;
  position: relative;
}

.testimonials::before,
.testimonials::after {
  content: '"';
  font-family: Georgia, serif;
  font-size: 15rem;
  position: absolute;
  color: rgba(106, 144, 128, 0.1);
  z-index: 1;
}

.testimonials::before {
  top: -2rem;
  left: 2rem;
}

.testimonials::after {
  bottom: -8rem;
  right: 2rem;
}

.testimonials-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.testimonials-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: #666;
  position: relative;
  z-index: 2;
}

.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
}

.testimonial-slide {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin: 0 1rem;
  transform: perspective(1000px) rotateY(0);
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.testimonial-slide:hover {
  transform: perspective(1000px) rotateY(5deg) translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.testimonial-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 3px solid var(--color-tertiary);
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.testimonial-role {
  font-size: 0.9rem;
  color: #666;
}

.testimonial-quote {
  font-style: italic;
  color: #444;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--color-tertiary);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-light);
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active,
.testimonial-dot:hover {
  background-color: var(--color-secondary);
}

@media (max-width: 768px) {
  .testimonial-slider {
    padding: 0 1rem;
  }
}

/* ------------------------------
   Signup Section
------------------------------ */
.signup {
  background: linear-gradient(45deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  padding: 6rem 0;
}

.signup-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
  color: white;
}

.signup-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: rgba(255, 255, 255, 0.8);
}

.signup-options {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.option-card {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  color: #333;
}

.option-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.option-header {
  background-color: var(--color-tertiary);
  padding: 2rem;
  text-align: center;
}

.option-title {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.option-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.option-period {
  font-size: 0.9rem;
  color: #666;
}

.option-features {
  padding: 2rem;
  list-style: none;
}

.option-feature {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.option-feature::before {
  content: '✓';
  color: var(--color-secondary);
  font-weight: bold;
  margin-right: 0.8rem;
}

.option-footer {
  padding: 0 2rem 2rem;
  text-align: center;
}

.signup-form {
  margin-top: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.signup-form-title {
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #444;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(106, 144, 128, 0.2);
}

.form-select {
  appearance: none;
  background-image: url("images/form.jpg");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 8px;
  padding-right: 2.5rem;
}

.form-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

/* ------------------------------
   Contact Section
------------------------------ */
.contact {
  padding: 6rem 0;
  background-color: white;
}

.contact-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: #666;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--color-secondary);
  margin-right: 1rem;
}

.contact-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.contact-text p {
  color: #666;
}

.contact-map {
  flex: 1;
  min-width: 280px;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form {
  margin-top: 3rem;
  width: 100%;
}

/* ------------------------------
   Footer
------------------------------ */
.footer {
  background-color: #1c2b1f;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}

.footer-logo {
  flex: 1;
  min-width: 280px;
}

.footer-logo img {
  max-width: 200px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1) opacity(0.8);
}

.footer-text {
  margin-bottom: 1.5rem;
}

.footer-links {
  flex: 1;
  min-width: 150px;
}

.footer-links h3 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-tertiary);
}

.footer-menu {
  list-style: none;
}

.footer-item {
  margin-bottom: 0.8rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-link:hover {
  color: white;
  padding-left: 5px;
}

.footer-newsletter {
  flex: 1;
  min-width: 280px;
}

.newsletter-form {
  display: flex;
  margin-top: 1.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 5px 0 0 5px;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.newsletter-button {
  background-color: var(--color-secondary);
  color: white;
  border: none;
  padding: 0 1.5rem;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-button:hover {
  background-color: var(--color-primary);
}

.footer-bottom {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  font-size: 0.9rem;
}

/* ------------------------------
   Cookie Policy Page
------------------------------ */
.policy-page {
  padding: 8rem 0 4rem;
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
}

.policy-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.policy-content {
  background-color: white;
  border-radius: 10px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.policy-section {
  margin-bottom: 2rem;
}

.policy-section-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.policy-text {
  margin-bottom: 1rem;
  color: #444;
}

.policy-list {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-item {
  margin-bottom: 0.5rem;
}

/* ------------------------------
   Animations
------------------------------ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.fade-in {
  animation: fadeIn 1s ease-out;
}

.slide-in-up {
  animation: slideInUp 1s ease-out;
}

.pulse {
  animation: pulse 2s infinite;
}

/* ------------------------------
   Media Queries
------------------------------ */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .contact-content,
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .process-steps::before {
    display: none;
  }
}

@media (max-width: La576px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
}