:root {
  --navy: #0A1628;
  --cream: #FFF8F0;
  --coral: #FF6B6B;
  --peach: #FFE5D9;
  --sage: #4A7C59;
  --white: #FFFFFF;
  --gray-light: #F5F5F5;
  --gray-mid: #666666;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--navy);
  background: var(--cream);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6%;
}

.container-narrow {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 6%;
}

.section-padding {
  padding: clamp(5rem, 12vw, 10rem) 0;
}

.section-dark {
  background: var(--navy);
  color: var(--cream);
}

.section-light {
  background: var(--cream);
  color: var(--navy);
}

.section-white {
  background: var(--white);
  color: var(--navy);
}

.btn {
  display: inline-block;
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.btn-primary:hover {
  background: transparent;
  color: var(--coral);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

.btn-secondary:hover {
  background: var(--cream);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--cream);
  transform: translateY(-2px);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 1rem 0;
}

.nav-wrapper {
  background: var(--white);
  border-radius: 100px;
  padding: 1rem 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 3%;
  transition: all 0.3s ease;
}

header.scrolled .nav-wrapper {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--navy);
}

.logo img {
  height: 40px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--navy);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(10, 22, 40, 0.15);
}

.lang-btn {
  padding: 0.4rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-mid);
  transition: all 0.3s ease;
  border-radius: 6px;
}

.lang-btn:hover {
  color: var(--coral);
  background: var(--peach);
}

.lang-btn.active {
  color: var(--coral);
  background: var(--peach);
}

.lang-divider {
  color: rgba(10, 22, 40, 0.2);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: var(--navy);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-left: auto;
  margin-right: 8%;
  color: var(--cream);
}

.hero h1 {
  margin-bottom: 2rem;
  color: var(--cream);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  line-height: 1.8;
  opacity: 0.95;
}

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

.benefits {
  position: relative;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.benefit-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.benefit-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: var(--peach);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--coral);
}

.benefit-card h3 {
  margin-bottom: 1rem;
  color: var(--cream);
}

.benefit-card p {
  margin-bottom: 0;
  opacity: 0.9;
}

.how-it-works {
  position: relative;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.step-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.step-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 3rem;
  width: 60px;
  height: 60px;
  background: var(--coral);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4);
}

.step-icon {
  font-size: 3rem;
  color: var(--sage);
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

.step-card h3 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.step-card p {
  color: var(--gray-mid);
  margin-bottom: 0;
}

.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

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

.service-card {
  background: var(--navy);
  padding: 3rem;
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  border-color: var(--coral);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255, 107, 107, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--peach);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--coral);
  margin-bottom: 2rem;
}

.service-card h3 {
  color: var(--cream);
  margin-bottom: 1rem;
}

.service-card p {
  color: rgba(255, 248, 240, 0.85);
  margin-bottom: 0;
}

.cta-section {
  text-align: center;
  position: relative;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

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

.about-content h1 {
  margin-bottom: 2rem;
}

.about-content p {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.about-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
}

.mission-card,
.vision-card {
  padding: 3rem;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.mission-card.visible,
.vision-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.mission-card h3,
.vision-card h3 {
  color: var(--coral);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mission-card h3 i,
.vision-card h3 i {
  font-size: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem;
  background: var(--navy);
  border-radius: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.value-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--coral);
}

.value-card h4 {
  color: var(--cream);
  margin-bottom: 1rem;
}

.value-card p {
  color: rgba(255, 248, 240, 0.85);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 5rem;
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-text h2 {
  margin-bottom: 1.5rem;
}

.service-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.service-features {
  list-style: none;
  margin-top: 2rem;
}

.service-features li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(10, 22, 40, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
}

.service-features li i {
  color: var(--sage);
  font-size: 1.2rem;
}

.service-detail-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  height: 500px;
}

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

.areas-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.area-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.area-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.area-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.area-image {
  height: 240px;
  overflow: hidden;
}

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

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

.area-content {
  padding: 2rem;
}

.area-content h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.area-content p {
  color: var(--gray-mid);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.area-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--gray-mid);
}

.area-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.area-meta i {
  color: var(--coral);
}

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

.contact-info h2 {
  margin-bottom: 2rem;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

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

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

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--peach);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--coral);
  flex-shrink: 0;
}

.contact-item-content h4 {
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.contact-item-content p {
  margin-bottom: 0;
  color: var(--gray-mid);
}

.contact-item-content a {
  color: var(--coral);
  font-weight: 500;
}

.contact-item-content a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid rgba(10, 22, 40, 0.1);
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  background: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.checkbox-group {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 0.25rem;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-group a {
  color: var(--coral);
  text-decoration: underline;
}

.contact-form .btn {
  width: 100%;
}

.map-container {
  margin-top: 5rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  height: 500px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.thanks-container {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 5rem 0;
}

.thanks-icon {
  width: 120px;
  height: 120px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 4rem;
  color: var(--white);
}

.thanks-container h1 {
  margin-bottom: 1.5rem;
}

.thanks-container p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 1rem;
}

.legal-date {
  color: var(--gray-mid);
  font-size: 0.95rem;
  margin-bottom: 3rem;
  display: block;
}

.legal-content h2 {
  font-size: 1.8rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.legal-content h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.legal-content p {
  margin-bottom: 1.5rem;
  color: var(--gray-mid);
}

.legal-content ul {
  margin: 1.5rem 0 1.5rem 2rem;
  color: var(--gray-mid);
}

.legal-content ul li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

footer {
  background: var(--navy);
  color: var(--cream);
  padding: 5rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-about h3 {
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-about p {
  opacity: 0.85;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.footer-links h4 {
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

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

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li a {
  color: rgba(255, 248, 240, 0.75);
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--coral);
  padding-left: 5px;
}

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

.footer-bottom p {
  margin: 0;
  opacity: 0.7;
  font-size: 0.9rem;
}

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

.footer-legal a {
  color: rgba(255, 248, 240, 0.7);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--coral);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 2rem;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin: 0;
  color: var(--navy);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--coral);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-buttons .btn {
  padding: 0.9rem 2rem;
  white-space: nowrap;
}

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 1.5rem;
  }

  .hero-overlay {
    width: 60%;
  }

  .about-hero,
  .contact-wrapper,
  .service-detail {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .mission-vision {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  nav.active {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .nav-links a {
    font-size: 1.3rem;
  }

  .lang-switcher {
    border-left: none;
    border-top: 1px solid rgba(10, 22, 40, 0.15);
    padding-top: 1rem;
    padding-left: 0;
    margin-left: 0;
  }

  .nav-wrapper {
    margin: 0 4%;
  }

  .hero-overlay {
    width: 100%;
    clip-path: none;
  }

  .hero-content {
    margin: 0 auto;
    text-align: center;
    padding: 0 5%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .benefits-grid,
  .steps-container,
  .services-grid,
  .values-grid,
  .areas-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-detail:nth-child(even) {
    direction: ltr;
  }

  .service-detail-image {
    height: 350px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }

  .section-padding {
    padding: 4rem 0;
  }

  .map-container {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .container,
  .container-narrow {
    padding: 0 5%;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo img {
    height: 32px;
  }

  .nav-wrapper {
    padding: 0.75rem 1.25rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .step-card,
  .service-card,
  .contact-form {
    padding: 2rem;
  }
}