/* 
* Main Stylesheet for Évolution Personnelle
* Theme: Corporate with Biomorphic Design
* Color Scheme: Monochromatic
* Animation Style: Morphing
* Fonts: Montserrat (headings), Merriweather (body)
*/

/* Global Variables */
:root {
  /* Primary Colors */
  --primary-color: #4a7c59;
  --primary-light: #6a9c79;
  --primary-lighter: #8abc99;
  --primary-dark: #356c49;
  --primary-darker: #255c39;

  /* Monochromatic Scheme */
  --text-color: #333333;
  --text-light: #666666;
  --text-lighter: #999999;
  --bg-light: #ffffff;
  --bg-off-white: #f9f9f9;
  --bg-light-grey: #f2f2f2;
  --bg-grey: #e5e5e5;
  --bg-dark: #222222;

  /* Shadows and Effects */
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.2);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 15px;
  --radius-xl: 30px;

  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-medium: all 0.3s ease;
  --transition-slow: all 0.5s ease;

  /* Z-index layers */
  --z-negative: -1;
  --z-base: 1;
  --z-header: 100;
  --z-modal: 1000;
  --z-toast: 1500;
  --z-max: 9999;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Merriweather", serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--bg-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-color);
}

p {
  margin-bottom: 1.5rem;
}

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

a:hover {
  color: var(--primary-dark);
}

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

/* Utility Classes */
.has-text-primary {
  color: var(--primary-color) !important;
}

.has-text-light {
  color: var(--text-light) !important;
}

.has-bg-primary {
  background-color: var(--primary-color) !important;
}

.has-bg-light {
  background-color: var(--bg-light) !important;
}

.has-bg-off-white {
  background-color: var(--bg-off-white) !important;
}

.has-bg-light-grey {
  background-color: var(--bg-light-grey) !important;
}

.has-shadow-sm {
  box-shadow: var(--shadow-sm) !important;
}

.has-shadow-md {
  box-shadow: var(--shadow-md) !important;
}

.has-shadow-lg {
  box-shadow: var(--shadow-lg) !important;
}

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

.rounded-sm {
  border-radius: var(--radius-sm) !important;
}

.rounded-md {
  border-radius: var(--radius-md) !important;
}

.rounded-lg {
  border-radius: var(--radius-lg) !important;
}

.rounded-xl {
  border-radius: var(--radius-xl) !important;
}

.transition-medium {
  transition: var(--transition-medium) !important;
}

/* Typography Enhancements */
.title.is-1,
.title.is-2,
.title.is-3 {
  letter-spacing: -0.02em;
}

.subtitle {
  font-weight: 400;
  color: var(--text-light);
}

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

.section-header .title {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-header .title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
}

.text-gradient {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons & Interactive Elements */
.button,
button,
.btn,
input[type="submit"] {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  border-radius: var(--radius-xl);
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
  z-index: var(--z-base);
}

.button::before,
button::before,
.btn::before,
input[type="submit"]::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: var(--transition-slow);
  z-index: var(--z-negative);
}

.button:hover::before,
button:hover::before,
.btn:hover::before,
input[type="submit"]:hover::before {
  left: 100%;
}

.button.is-primary,
.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border-color: transparent;
}

.button.is-primary:hover,
.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.button.is-light,
.btn-light {
  background-color: var(--bg-light);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.button.is-light:hover,
.btn-light:hover {
  background-color: var(--primary-lighter);
  color: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.button.is-text,
.btn-text {
  background-color: transparent;
  color: var(--primary-color);
  border: none;
  padding-left: 0;
  padding-right: 0;
}

.button.is-text:hover,
.btn-text:hover {
  background-color: transparent;
  color: var(--primary-dark);
  text-decoration: underline;
}

.button.is-rounded,
.btn-rounded {
  border-radius: 50px;
}

.button.is-fullwidth {
  width: 100%;
}

/* Read More Links */
.read-more {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: var(--transition-medium);
}

.read-more::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition-medium);
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more:hover::after {
  width: 100%;
}

.read-more i {
  margin-left: 5px;
  transition: var(--transition-medium);
}

.read-more:hover i {
  transform: translateX(5px);
}

/* Forms & Inputs */
.input,
.textarea,
.select select {
  border-radius: var(--radius-md);
  border-color: var(--bg-grey);
  box-shadow: none;
  transition: var(--transition-medium);
}

.input:focus,
.textarea:focus,
.select select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 1px var(--primary-lighter);
}

.label {
  font-family: "Montserrat", sans-serif;
  color: var(--text-color);
  font-weight: 500;
}

.checkbox,
.radio {
  cursor: pointer;
}

/* Header & Navigation */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-header);
  transition: var(--transition-medium);
}

.navbar {
  background-color: #222222 !important;

  transition: var(--transition-medium);
}

.navbar.is-scrolled {
  background-color: var(--bg-light);
  box-shadow: var(--shadow-sm);
}

.navbar-brand .title {
  margin-bottom: 0;
}

.navbar-item h1,
.navbar-item {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: white;
  transition: var(--transition-medium);
}

.is-scrolled .navbar-item {
  color: var(--text-color);
}

.navbar-item:hover,
.navbar-item:focus {
  background-color: transparent !important;
  color: var(--primary-light) !important;
}

.navbar-burger {
  color: white;
  transition: var(--transition-medium);
}

.is-scrolled .navbar-burger {
  color: var(--text-color);
}

.navbar-menu {
  background-color: transparent;
  transition: var(--transition-medium);
}

.is-scrolled .navbar-menu {
  background-color: var(--bg-light);
}

@media screen and (max-width: 1023px) {
  .navbar-menu {
    background-color: var(--bg-light);
    box-shadow: var(--shadow-md);
  }

  .navbar-menu .navbar-item {
    color: var(--text-color);
  }
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: var(--z-negative);
}

.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.7)
  );
  z-index: var(--z-negative);
}

.hero-title,
.hero-subtitle,
.hero-text {
  color: white !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  animation: fadeIn 1s ease-out, slideUp 1s ease-out;
}

.hero-subtitle {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  animation: fadeIn 1s ease-out 0.3s, slideUp 1s ease-out 0.3s;
  animation-fill-mode: both;
}

.hero-text {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  animation: fadeIn 1s ease-out 0.6s, slideUp 1s ease-out 0.6s;
  animation-fill-mode: both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: var(--z-base);
}

.hero-scroll-indicator span {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  animation: scrollDown 2s infinite;
  opacity: 0;
}

.hero-scroll-indicator span:nth-child(1) {
  animation-delay: 0s;
}

.hero-scroll-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-scroll-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes scrollDown {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px);
  }
}

/* Services Section */
.services-section {
  background-color: var(--bg-light-grey);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 300px;
  height: 300px;
  background-color: var(--primary-lighter);
  border-radius: 50%;
  opacity: 0.1;
  z-index: var(--z-negative);
}

.services-section::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background-color: var(--primary-lighter);
  border-radius: 50%;
  opacity: 0.1;
  z-index: var(--z-negative);
}

.service-card {
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-medium);
  display: flex;
  flex-direction: column;
  background-color: var(--bg-light);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
}

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

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

.card-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

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

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  text-align: center;
}

.card-content .title {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.progress-container {
  width: 100%;
  margin: 1rem 0;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-color);
}

.progress {
  height: 0.5rem;
  border-radius: 10px;
  overflow: hidden;
}

.progress::-webkit-progress-bar {
  background-color: var(--bg-grey);
  border-radius: 10px;
}

.progress::-webkit-progress-value {
  background-color: var(--primary-color);
  border-radius: 10px;
}

.accordion-toggle {
  margin-top: 1.5rem;
  width: 100%;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  margin-top: 1rem;
  width: 100%;
  text-align: left;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--bg-light);
  padding: 5rem 1.5rem;
}

.testimonial-card {
  height: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-medium);
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
}

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

.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
}

.testimonial-card .media {
  align-items: center;
}

.testimonial-card .media-left {
  margin-right: 1.5rem;
}

.testimonial-card .media-content .title {
  margin-bottom: 0.25rem;
}

.testimonial-card .image.is-64x64 {
  overflow: hidden;
}

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

.testimonial-slider {
  position: relative;
  padding-bottom: 3rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.slider-dots {
  display: flex;
  margin: 0 1rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--bg-grey);
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition-medium);
}

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

.prev-button,
.next-button {
  background: none;
  border: none;
  color: var(--primary-color);
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition-medium);
  padding: 0.5rem 1rem;
}

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

/* Resources Section */
.resources-section {
  background-color: var(--bg-light-grey);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.resources-section::before {
  content: "";
  position: absolute;
  top: -15%;
  left: 5%;
  width: 350px;
  height: 350px;
  background-color: var(--primary-lighter);
  border-radius: 50%;
  opacity: 0.1;
  z-index: var(--z-negative);
}

.resource-card {
  height: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-medium);
  display: flex;
  flex-direction: column;
  background-color: var(--bg-light);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
}

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

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

.resource-card .card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.resource-card .title {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.resource-card .title a {
  color: var(--text-color);
  transition: var(--transition-medium);
}

.resource-card .title a:hover {
  color: var(--primary-color);
}

.resource-card .content {
  margin-bottom: 1.5rem;
}

.tag {
  border-radius: 20px;
  padding: 0.5em 1em;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
}

.tag.is-primary {
  background-color: var(--primary-color);
  color: white;
}

.tag.is-light {
  background-color: var(--bg-light-grey);
  color: var(--text-color);
}

/* Events Section */
.events-section {
  background-color: var(--bg-light);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.events-section::after {
  content: "";
  position: absolute;
  bottom: -15%;
  right: 5%;
  width: 400px;
  height: 400px;
  background-color: var(--primary-lighter);
  border-radius: 50%;
  opacity: 0.1;
  z-index: var(--z-negative);
}

.event-card {
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-medium);
  display: flex;
  flex-direction: column;
  background-color: var(--bg-light);
  margin-bottom: 2rem;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

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

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

.event-date {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: var(--z-base);
}

.event-date .day {
  font-size: 1.5rem;
  font-weight: bold;
  display: block;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}

.event-date .month {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}

.event-details {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.event-capacity {
  margin-top: 1rem;
  width: 100%;
}

/* Contact Section */
.contact-section {
  background-color: var(--bg-light-grey);
  padding: 5rem 1.5rem;
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./image/contact-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: var(--z-negative);
}

.contact-form-wrapper {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: var(--z-base);
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-medium);
}

.contact-form-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-info {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: var(--z-base);
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-medium);
}

.contact-info.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
}

.contact-item h4 {
  margin-bottom: 0.25rem;
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-container img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: white;
  padding: 4rem 1.5rem 2rem;
}

.footer .title {
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #ccc;
  transition: var(--transition-medium);
}

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

.social-links {
  margin-top: 1.5rem;
}

.social-links a {
  color: #ccc;
  margin-right: 1rem;
  transition: var(--transition-medium);
  font-family: "Montserrat", sans-serif;
}

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

.footer-bottom {
  margin-top: 2rem;
}

.footer-bottom hr {
  background-color: #444;
  margin: 2rem 0 1rem;
}

.newsletter-signup {
  margin-top: 2rem;
}

.newsletter-form {
  margin-top: 1rem;
}

/* Cookie Popup */
.cookie-popup {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 1rem;
  z-index: var(--z-max);
}

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

.cookie-content p {
  margin-right: 2rem;
  margin-bottom: 0;
}

/* Additional Pages */
.page-content {
  padding-top: 100px;
  min-height: calc(100vh - 300px);
}

.success-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding: 2rem;
}

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

.privacy-page,
.terms-page {
  padding-top: 100px;
  padding-bottom: 3rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes morphing {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

.animated-button {
  position: relative;
  overflow: hidden;
}

.animated-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: 0.5s;
}

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

/* Responsive Adjustments */
@media screen and (max-width: 1023px) {
  .navbar-menu {
    background-color: var(--bg-light);
    box-shadow: var(--shadow-md);
  }

  .navbar-menu .navbar-item {
    color: var(--text-color);
  }

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

  .cookie-content p {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem !important;
  }

  .hero-subtitle {
    font-size: 1.5rem !important;
  }

  .hero-text {
    font-size: 1rem;
  }

  .contact-info {
    margin-top: 2rem;
  }

  .section {
    padding: 3rem 1.5rem;
  }

  .footer {
    padding: 3rem 1.5rem 1.5rem;
  }
}

@media screen and (max-width: 576px) {
  .hero-title {
    font-size: 2rem !important;
  }

  .hero-subtitle {
    font-size: 1.25rem !important;
  }

  .section-header .title {
    font-size: 1.75rem !important;
  }

  .contact-form-wrapper,
  .contact-info {
    padding: 1.5rem;
  }
}
