/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

/* Barre de contact supérieure */
.top-bar {
  background-color: #1a1a1a;
  color: white;
  padding: 8px 0;
  font-size: 14px;
}

.top-bar .contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
}

.top-bar .phone,
.top-bar .address {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Header */
.header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: #20613d;
  margin-bottom: 2px;
}

.logo h1 a {
  text-decoration: none;
  color: inherit;
}

.logo .tagline {
  font-size: 12px;
  color: #666;
  font-weight: 400;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav a:hover,
.nav a.active {
  background-color: #20613d;
  color: white;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #20613d 0%, #10402a 100%);
  color: white;
  padding: 80px 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background-color: #d95d39;
  color: white;
}

.btn-primary:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: white;
  color: #20613d;
}

/* Stats Section */
.stats {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #20613d;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #20613d;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services {
  padding: 80px 0;
}

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

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #20613d;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #20613d;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  line-height: 1.7;
}

/* Process Section */
.process {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  align-items: center;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #20613d, #10402a);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.step-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #20613d;
  margin-bottom: 10px;
}

.step-content p {
  color: #666;
  line-height: 1.7;
}

/* Event Types Section */
.event-types {
  padding: 80px 0;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.event-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.event-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.event-content {
  padding: 25px;
}

.event-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #20613d;
  margin-bottom: 12px;
}

.event-content p {
  color: #666;
  line-height: 1.7;
}

/* Technologies Section */
.technologies {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.tech-category {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.tech-category h3 {
  font-size: 22px;
  font-weight: 600;
  color: #20613d;
  margin-bottom: 20px;
}

.tech-category ul {
  list-style: none;
}

.tech-category li {
  padding: 8px 0;
  color: #666;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 20px;
}

.tech-category li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d95d39;
  font-weight: bold;
}

.tech-category li:last-child {
  border-bottom: none;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 4px solid #d95d39;
}

.testimonial-content {
  margin-bottom: 25px;
}

.testimonial-content p {
  font-style: italic;
  color: #555;
  line-height: 1.7;
  font-size: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #20613d;
  margin-bottom: 2px;
}

.author-info span {
  font-size: 14px;
  color: #666;
}

/* Location Section */
.location {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.location-info h2 {
  font-size: 36px;
  font-weight: 700;
  color: #20613d;
  margin-bottom: 30px;
}

.address-block {
  background: white;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.address-block h3 {
  font-size: 22px;
  font-weight: 600;
  color: #20613d;
  margin-bottom: 10px;
}

.address-block p {
  color: #666;
  margin-bottom: 8px;
}

.location-details {
  background: white;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.location-details h4 {
  font-size: 18px;
  font-weight: 600;
  color: #20613d;
  margin-bottom: 15px;
}

.location-details ul {
  list-style: none;
}

.location-details li {
  padding: 5px 0;
  color: #666;
  position: relative;
  padding-left: 20px;
}

.location-details li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #d95d39;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.map-container iframe {
  border-radius: 12px;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #20613d 0%, #10402a 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 24px;
  font-weight: 700;
  color: #20613d;
  margin-bottom: 20px;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.footer-section p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 15px;
}

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

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #20613d;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  color: #ccc;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #20613d 0%, #10402a 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 20px;
  opacity: 0.9;
}

/* About Page Styles */
.about-intro {
  padding: 80px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #20613d;
  margin-bottom: 25px;
}

.about-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Values Section */
.values {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.value-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #20613d;
  margin-bottom: 15px;
}

.value-card p {
  color: #666;
  line-height: 1.7;
}

/* Expertise Section */
.expertise {
  padding: 80px 0;
}

.expertise-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.expertise-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #20613d;
  margin-bottom: 25px;
}

.expertise-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.expertise-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.point h4 {
  font-size: 18px;
  font-weight: 600;
  color: #20613d;
  margin-bottom: 8px;
}

.point p {
  color: #666;
  line-height: 1.6;
  font-size: 14px;
}

.expertise-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Team Section */
.team {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-member {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

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

.member-info {
  padding: 25px;
}

.member-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: #20613d;
  margin-bottom: 5px;
}

.member-info span {
  color: #d95d39;
  font-weight: 500;
  font-size: 14px;
  display: block;
  margin-bottom: 15px;
}

.member-info p {
  color: #666;
  line-height: 1.6;
  font-size: 14px;
}

/* History Section */
.history {
  padding: 80px 0;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #20613d;
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-year {
  background: #20613d;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 18px;
  min-width: 80px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.timeline-content {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  flex: 1;
  margin: 0 30px;
}

.timeline-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #20613d;
  margin-bottom: 10px;
}

.timeline-content p {
  color: #666;
  line-height: 1.6;
}

/* Approach Section */
.approach {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.approach-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.approach-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #20613d;
  margin-bottom: 25px;
}

.approach-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.approach-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Contact Page Styles */
.contact-section {
  padding: 80px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.contact-form-container h2 {
  font-size: 36px;
  font-weight: 700;
  color: #20613d;
  margin-bottom: 15px;
}

.contact-form-container p {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Form Styles */
.contact-form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #20613d;
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #e1e5e9;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background-color: #20613d;
  border-color: #20613d;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark:after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

/* Contact Info Cards */
.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #20613d;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-icon {
  font-size: 24px;
  margin-top: 2px;
}

.contact-details h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.contact-details p {
  color: #666;
  line-height: 1.5;
}

.contact-details a {
  color: #20613d;
  text-decoration: none;
}

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

.contact-card ul {
  list-style: none;
}

.contact-card li {
  padding: 8px 0;
  color: #666;
  border-bottom: 1px solid #eee;
}

.contact-card li:last-child {
  border-bottom: none;
}

/* Map Section */
.map-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.map-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #20613d;
  text-align: center;
  margin-bottom: 40px;
}

.map-info {
  margin-top: 30px;
  text-align: center;
}

.map-info h3 {
  font-size: 24px;
  font-weight: 600;
  color: #20613d;
  margin-bottom: 20px;
}

.transport-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.transport-item {
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  font-size: 14px;
  color: #666;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}

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

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 4px solid #20613d;
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #20613d;
  margin-bottom: 15px;
}

.faq-item p {
  color: #666;
  line-height: 1.7;
}

/* Legal Content */
.legal-content {
  padding: 60px 0;
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.legal-text h2 {
  font-size: 28px;
  font-weight: 600;
  color: #20613d;
  margin: 40px 0 20px 0;
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text h3 {
  font-size: 22px;
  font-weight: 600;
  color: #20613d;
  margin: 30px 0 15px 0;
}

.legal-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 25px 0 10px 0;
}

.legal-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

.legal-text ul {
  margin: 15px 0 15px 20px;
}

.legal-text li {
  color: #666;
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-text a {
  color: #20613d;
  text-decoration: none;
}

.legal-text a:hover {
  text-decoration: underline;
}

.legal-text em {
  color: #999;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content h2 {
    font-size: 40px;
  }
  
  .location-content,
  .about-content,
  .expertise-content,
  .approach-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .timeline:before {
    left: 30px;
  }
  
  .timeline-item {
    flex-direction: row !important;
    padding-left: 60px;
  }
  
  .timeline-year {
    position: absolute;
    left: 0;
    margin: 0;
  }
  
  .timeline-content {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .top-bar .contact-info {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .header .container {
    flex-wrap: wrap;
  }
  
  .nav {
    display: none;
    width: 100%;
    order: 3;
  }
  
  .nav.active {
    display: block;
  }
  
  .nav ul {
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-content h2 {
    font-size: 32px;
  }
  
  .hero-content p {
    font-size: 18px;
  }
  
  .page-header h1 {
    font-size: 36px;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .services-grid,
  .event-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps .step {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero-content h2 {
    font-size: 28px;
  }
  
  .page-header h1 {
    font-size: 28px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .legal-text {
    padding: 25px;
  }
  
  .legal-text h2 {
    font-size: 24px;
  }
}
