/* Variables CSS modifiées pour améliorer la lisibilité */
:root {
  --primary: #0A2540;
  --primary-light: #1D4E89;
  --primary-dark: #051A30;
  --secondary: #1C9A9F;
  --accent: #F6AE2D;
  --light: #f8f9fa;
  --dark: #1a1a1a;
  --gray: #5a5a5a;
  --success: #27ae60;
  --light-green: #1EBEA6;
  --section-padding: 5rem 0;
  --text-color: #000000;
  --text-light: #444444;
  --border-radius: 8px;
  --box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  color: var(--text-color);
  background-color: #fff;
  font-size: 1.05rem;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--dark);
  line-height: 1.3;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: 0.01em;
}

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

/* Header Styles - LOGO AGRANDI */
.site-header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  min-height: 65px;
  height: auto;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 5px 0;
}

.brand {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
}

.logo {
  height: 55px;
  width: auto;
  transition: height 0.3s ease;
  margin: 0;
}

.site-nav {
  display: flex;
  gap: 1.8rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.site-nav a:hover {
  color: var(--secondary);
}

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

.site-nav a:hover:after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

/* Main Content Area */
.view {
  margin-top: 65px;
  min-height: calc(100vh - 200px);
}

/* Dégradé animé */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.gradient-animated {
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
}
@media (prefers-reduced-motion: reduce) {
  .gradient-animated { animation: none; background-size: auto; }
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.85)), url('../images/fond.jpg');
  color: white;
  padding: 6rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 100% 100%;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--light-green);
  font-weight: 800;
}

.hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  color: white;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.slogan {
  font-style: italic;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: inline-block;
  font-size: 1.1rem;
  backdrop-filter: blur(5px);
  color: white;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(246, 174, 45, 0.3);
}

.cta-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #e49e25;
  transition: all 0.4s;
  z-index: -1;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.cta-button:hover:before {
  width: 100%;
}

/* Bouton Voir plus */
.see-more-btn {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  margin-top: 1rem;
  border: 2px solid var(--primary);
}

.see-more-btn:hover {
  background-color: transparent;
  color: var(--primary);
  transform: translateY(-2px);
}

/* Domains Section */
.domains {
  padding: var(--section-padding);
  background-color: var(--light);
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--accent);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: var(--text-light);
}

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

.domain-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.05);
}

.domain-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: var(--secondary);
  transition: height 0.4s;
}

.domain-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.domain-card:hover:before {
  height: 100%;
}

.domain-card h3 {
  color: var(--primary);
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}

.domain-icon {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
  transition: var(--transition);
}

.domain-card:hover .domain-icon {
  transform: scale(1.1);
}

/* Content Sections */
.content-section {
  padding: var(--section-padding);
  background-color: rgba(255, 255, 255, 0.95);
}

.content-section:nth-child(even) {
  background-color: #f9f9f9;
}

.blue-band {
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  padding: 4rem 0;
  color: white;
  margin: 4rem 0;
  width: 100%;
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  text-align: center;
}

.blue-band h2 {
  color: white;
  text-align: center;
  margin-bottom: 1.5rem;
}

.blue-band p {
  color: rgba(255,255,255,0.95);
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

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

.two-columns img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.two-columns img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.sub-section {
  margin-bottom: 2.5rem;
}

.sub-section h4 {
  color: var(--primary);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  font-size: 1.3rem;
}

.sub-section h4 i {
  margin-right: 12px;
  color: var(--accent);
  font-size: 1.5rem;
}

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

.value-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.value-card i {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.value-card:hover i {
  transform: scale(1.1);
}

/* Slider Section */
.slider-section {
  padding: var(--section-padding);
  background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
}

.slider-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
  background: white;
  text-align: center;
  position: relative;
}

.slide-image {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  box-shadow: var(--box-shadow);
}

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

.slider-nav {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
  gap: 1rem;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* Media Grid */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.media-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}

.media-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.media-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}

.media-card:hover img {
  transform: scale(1.05);
}

.media-content {
  padding: 2rem;
}

/* Video Container */
.video-container {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: #000;
}

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

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  cursor: pointer;
  transition: var(--transition);
}

.video-placeholder:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.video-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Evaluation Form */
.evaluation-form {
  background: white;
  padding: 3.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin: 3rem 0;
  border: 1px solid rgba(0,0,0,0.05);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(28, 154, 159, 0.1);
}

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

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  margin: 2rem 0;
}

.consent-checkbox input {
  margin-right: 10px;
  margin-top: 5px;
}

/* Footer - RÉDUCTION DE LA TAILLE AU 1/3 */
.site-footer {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 1.5rem 0 0.8rem;
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-form h3 {
  color: white;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.contact-form p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.95);
}

.contact-form form {
  display: grid;
  gap: 0.8rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: none;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 0.9rem;
}

.contact-form button {
  background-color: var(--accent);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.contact-form button:hover {
  background-color: #e49e25;
  transform: translateY(-2px);
}

/* SUPPRESSION DE LA SECTION cabinet-address */
.cabinet-address {
  display: none;
}

.social-media {
  text-align: center;
  margin: 1.5rem 0;
}

.social-media h4 {
  color: white;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
}

.social-icons i {
  font-size: 1.2rem;
}

.copyright {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

/* Page de détail d'expertise */
.expertise-detail {
  padding: var(--section-padding);
  background-color: rgba(255, 255, 255, 0.95);
}

.expertise-header {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
  margin-bottom: 4rem;
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  position: relative;
  overflow: hidden;
}

.expertise-header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.expertise-header h2 {
  position: relative;
  z-index: 2;
  color: var(--light-green);
  font-size: 2.8rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
}

.expertise-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.expertise-image {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.expertise-info {
  padding: 2.5rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.expertise-services {
  margin-top: 2.5rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.service-icon {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-right: 1.5rem;
  min-width: 35px;
}

.back-button {
  display: inline-flex;
  align-items: center;
  margin-bottom: 2.5rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.back-button i {
  margin-right: 0.8rem;
}

.back-button:hover {
  color: var(--secondary);
  transform: translateX(-5px);
}

/* Engagement Cards */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.engagement-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.engagement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.engagement-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transition: height 0.3s ease;
}

.engagement-card:hover:before {
  height: 6px;
}

.engagement-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}

.engagement-card:hover img {
  transform: scale(1.05);
}

.engagement-content {
  padding: 2rem;
  text-align: center;
}

.engagement-content h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

/* Engagement Hero Banner */
.engagement-hero {
  background: linear-gradient(rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.85)), url('../images/fond.jpg');
  color: white;
  padding: 6rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.engagement-hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 100% 100%;
}

.engagement-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--light-green);
  position: relative;
  z-index: 2;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.engagement-hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  font-style: normal;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  color: white;
  font-weight: 500;
  padding: 0 2rem;
  line-height: 1.6;
}

/* Particules flottantes pour l'effet tech */
.engagement-hero .tech-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.engagement-hero .tech-particles:before,
.engagement-hero .tech-particles:after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.engagement-hero .tech-particles:before {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.engagement-hero .tech-particles:after {
  top: 60%;
  right: 15%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.4; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 0.8; }
}

/* Style pour le champ honeypot */
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

/* Pattern background sections */
.pattern-bg {
  background: linear-gradient(rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.97)), url('../images/fond.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Messages de confirmation */
.form-success {
  display: none;
  background-color: var(--success);
  color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin-top: 2rem;
}

.form-error {
  display: none;
  background-color: #e74c3c;
  color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin-top: 2rem;
}

/* Amélioration des cartes d'engagement */
.engagement-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(28, 154, 159, 0.1);
}

.engagement-card .see-more-btn {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  border: none;
  color: white;
  transition: all 0.3s ease;
}

.engagement-card .see-more-btn:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(28, 154, 159, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
}

@media (max-width: 992px) {
  .two-columns, .expertise-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .two-columns img, .expertise-image {
    order: -1;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.15rem;
  }
  
  .expertise-header h2 {
    font-size: 2.3rem;
  }
  
  .engagement-hero h1 {
    font-size: 2.5rem;
  }
  
  .engagement-hero p {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  .site-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    gap: 1.2rem;
  }
  
  .site-nav.active {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.05rem;
  }
  
  .engagement-hero {
    padding: 6rem 0 4rem;
    background-attachment: scroll;
  }
  
  .engagement-hero h1 {
    font-size: 2.2rem;
  }
  
  .engagement-hero p {
    font-size: 1.05rem;
  }
  
  .evaluation-form {
    padding: 2rem;
  }
  
  .site-header {
    padding: 0;
    min-height: 55px;
  }
  
  .logo {
    height: 45px;
  }
  
  .view {
    margin-top: 55px;
  }
  
  .site-footer {
    padding: 1.2rem 0 0.6rem;
  }
  
  .social-icons a {
    width: 32px;
    height: 32px;
  }
  
  .social-icons i {
    font-size: 1rem;
  }
  
  .section-title {
    margin-bottom: 2.5rem;
  }
  
  .content-section, .domains {
    padding: 4rem 0;
  }
  
  .pattern-bg {
    background-attachment: scroll;
  }
  
  .expertise-header h2 {
    font-size: 2rem;
  }
  
  .header-container {
    padding: 3px 0;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 20px;
  }
  
  .hero {
    padding: 5rem 0 3rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .cta-button {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
  
  .domains-grid, .values-grid, .engagement-grid {
    grid-template-columns: 1fr;
  }
  
  .evaluation-form {
    padding: 1.5rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .logo {
    height: 40px;
  }
  
  .expertise-header h2 {
    font-size: 1.8rem;
  }
  
  .engagement-hero h1 {
    font-size: 2rem;
  }
  
  .engagement-hero p {
    font-size: 1.1rem;
  }
  
  .site-header {
    min-height: 50px;
  }
  
  .view {
    margin-top: 50px;
  }
}