/* Import des polices Google temporaires */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap");

/* Déclaration des polices */
@font-face {
  font-family: "TCCC-UnityHeadline";
  src: url("../fonts/TCCC-UnityHeadline.woff2") format("woff2"),
    url("../fonts/TCCC-UnityHeadline.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TCCC-UnityText";
  src: url("../fonts/TCCC-UnityText.woff2") format("woff2"),
    url("../fonts/TCCC-UnityText.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Reset de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "TCCC-UnityText", "Roboto", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #222;
  background: #ffffff;
  padding-top: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.main-nav a,
.slide-text h2 {
  font-family: "TCCC-UnityHeadline", "Montserrat", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}

header#main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding: 0 60px;
  background: #ffffff;
  position: relative;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
  margin-top: 0;
  padding-top: 10px;
}

.logo img {
  height: 140px;
  width: auto;
  object-fit: contain;
  margin-top: 0;
}

/* Navigation styles */
.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Hamburger menu - hidden by default */
.hamburger {
  display: none;
}

.main-nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
}

.main-nav ul a {
  text-decoration: none;
  color: #e30613;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.25s ease;
  position: relative;
  display: inline-block;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
}

.main-nav ul a:hover {
  background: rgba(254, 231, 233, 0.85);
  color: #e30613;
  border-color: rgba(255, 255, 255, 0.8);
}

.main-nav ul a.active {
  background: rgba(227, 6, 19, 0.9);
  color: #fff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.main-nav ul a.active:hover {
  background: rgba(227, 6, 19, 0.95);
}

a.btn-partenaire {
  background: #000;
  color: #fff;
  font-weight: 600;
  border-radius: 25px;
  padding: 12px 28px;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  border: 2px solid #000;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "TCCC-UnityHeadline", "Montserrat", "Segoe UI", Arial, sans-serif;
}

a.btn-partenaire:hover {
  background: transparent;
  color: #000;
  border: 2px solid #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#slider {
  margin-top: 0;
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  padding-top: 0;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3));
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  padding: 0 40px;
  z-index: 2;
}

.slide-text {
  text-align: center;
}

.brand-logo {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  transform: scale(1.2);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

.arrow-icon {
  color: white;
  font-size: 2rem;
  line-height: 1;
}

@media (max-width: 768px) {
  #slider {
    height: 60vh;
  }

  .brand-logo {
    max-width: 200px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .arrow-icon {
    font-size: 1.5rem;
  }

  .slide-content {
    padding: 0 20px;
  }
}

#valeurs {
  background: #fff;
  margin: 40px auto;
  padding: 40px 20px;
  max-width: 1100px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
#valeurs h2 {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  text-align: center;
}
.valeurs-content {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

#marques {
  text-align: center;
  padding: 60px 0;
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
}

#marques h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  text-align: center;
  color: #333;
}

.marques-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
  padding: 0 30px;
}

.marques-list img {
  height: 210px;
  width: 210px;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: grayscale(100%);
}

.marques-list img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* Nouvelle section partenariat */
#partenariat {
  padding: 60px 0;
  background-color: #f8f8f8;
  margin-top: 40px;
}

#partenariat h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
}

.partnership-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}

.partnership-left {
  height: 100%;
}

.partnership-left .partnership-card {
  height: 100%;
  background: #e61d2b;
}

.partnership-left .card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.partnership-left .card-content h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.partnership-left .card-content p {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0;
}

.partnership-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 2rem;
}

.partnership-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  color: #e61d2b;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.card-content p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.btn-arrow {
  display: flex;
  align-items: center;
  color: #e61d2b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.btn-arrow:hover {
  color: #b31721;
}

.btn-arrow::after {
  content: "→";
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn-arrow:hover::after {
  transform: translateX(5px);
}

@media (max-width: 900px) {
  .partnership-container {
    grid-template-columns: 1fr;
  }

  .partnership-left .partnership-card {
    min-height: 200px;
  }

  .partnership-right {
    gap: 1rem;
  }

  #partenariat {
    padding: 3rem 1rem;
  }
}

#actualites {
  background: #ffffff;
  padding: 60px 0;
  max-width: 1200px;
  margin: 0 auto;
}

#actualites h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  text-align: center;
  color: #333;
  font-family: "TCCC-UnityHeadline", "Montserrat", "Segoe UI", Arial, sans-serif;
}

.actualites-list {
  display: flex;
  gap: 30px;
}

.actu-card {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.actu-content {
  padding: 30px;
}

.actu-content h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.btn-more {
  display: inline-block;
  padding: 10px 20px;
  background: #e30613;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  margin-top: 20px;
  font-family: "TCCC-UnityHeadline", "Montserrat", "Segoe UI", Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
}

@media (max-width: 1100px) {
  header#main-header {
    padding: 0 30px;
    height: 100px;
  }

  .logo img {
    height: 120px;
  }

  .main-nav {
    gap: 20px;
  }

  .main-nav ul {
    gap: 15px;
  }

  .main-nav a {
    font-size: 0.9rem;
    padding: 8px 12px;
  }
}

@media (max-width: 900px) {
  header#main-header {
    background: #fff;
    position: relative;
    height: 70px;
    padding: 0 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .logo img {
    height: 50px;
    margin-top: 0;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: #fff;
    flex-direction: column;
    padding: 20px;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    display: flex;
  }

  .main-nav ul {
    width: 100%;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 5px;
  }

  .main-nav ul a {
    color: #e30613;
    width: 100%;
    text-align: left;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    border: none;
    background: transparent;
    margin: 2px 0;
  }

  a.btn-partenaire {
    position: relative;
    width: 100%;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 5px;
    opacity: 1;
    visibility: visible;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav.open a.btn-partenaire {
    transform: none;
  }

  /* Hamburger styles for mobile */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1000;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
  }

  .hamburger span {
    width: 100%;
    height: 2px;
    background: #e30613;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .hamburger.open span:first-child {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:last-child {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Ajustement du contenu principal pour le menu fixe */
  body {
    padding-top: 70px;
  }

  #slider {
    margin-top: 0;
  }

  #slider,
  #valeurs,
  #marques,
  #partenariat,
  #actualites {
    max-width: 98vw;
    padding: 20px 5px;
  }
  .valeurs-content,
  .marques-list,
  .actualites-list {
    flex-direction: column;
    gap: 16px;
  }
  .slide-content {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    justify-content: flex-start;
    height: 100%;
  }
  .slide-text {
    max-width: 100%;
    margin-bottom: 10px;
    padding: 0;
  }
  .slide-text h2 {
    font-size: 1.2rem;
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
    line-height: 1;
    width: 100%;
    padding: 0 20px;
    display: block;
    letter-spacing: -0.02em;
  }
  .slide-text p {
    display: none;
  }
  .slide-image {
    max-width: 75%;
    margin: 0 auto;
    height: auto;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .slide-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  .engagement-cards {
    flex-direction: column;
    padding: 0 20px;
  }
  .partenariat-content {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 20px;
  }
  .partenariat-left {
    grid-column: 1;
  }
  .partenariat-right {
    grid-column: 1;
    gap: 20px;
  }
  .actualites-list {
    flex-direction: column;
    padding: 0 20px;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
  .slide-text h2 {
    font-size: 2.5rem;
    white-space: normal;
  }
  #marques h2,
  #actualites h2,
  #valeurs h2,
  #partenariat h2 {
    font-size: 2.5rem;
  }
  .card h3,
  .actu-content h3,
  .card-content h3 {
    font-size: 1.3rem;
  }
  body {
    font-size: 15px;
  }
  #partenariat {
    padding: 40px 20px;
  }
  #partenariat h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  #slider {
    height: 550px;
    margin-top: 0;
    padding-top: 20px;
  }
  .marques-list {
    gap: 50px;
    padding: 0 15px;
  }
  .marques-list img {
    height: 150px;
    width: 150px;
  }
  .card-image {
    height: 180px;
  }
  .card-content {
    padding: 20px;
  }
  .card-content h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 1200px) {
  header#main-header {
    padding: 0 40px;
    height: 100px;
  }

  .logo img {
    height: 100px;
    margin-top: 10px;
  }

  .main-nav {
    gap: 25px;
  }

  .main-nav ul {
    gap: 15px;
  }

  .main-nav ul a {
    font-size: 0.85rem;
    padding: 8px 15px;
  }

  a.btn-partenaire {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  #slider {
    height: 500px;
  }

  .slide-text h2 {
    font-size: 2.5rem;
  }

  .slide-text p {
    font-size: 1.1rem;
  }

  .engagement-cards {
    gap: 20px;
    padding: 10px;
  }

  .card {
    width: 300px;
    height: 350px;
  }
}

/* Tablettes en mode portrait */
@media (max-width: 1024px) {
  header#main-header {
    padding: 0 30px;
    height: 90px;
  }

  .logo img {
    height: 90px;
  }

  .main-nav {
    gap: 20px;
  }

  .main-nav ul {
    gap: 10px;
  }

  .main-nav ul a {
    font-size: 0.8rem;
    padding: 8px 12px;
  }

  a.btn-partenaire {
    padding: 8px 18px;
    font-size: 0.8rem;
  }

  #slider {
    height: 450px;
  }

  .slide-content {
    padding: 40px 30px;
  }

  .slide-text {
    max-width: 45%;
  }

  .slide-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .slide-text p {
    font-size: 1rem;
  }

  .engagement-cards {
    gap: 15px;
    padding: 10px;
  }

  .card {
    width: 280px;
    height: 330px;
  }

  .card .header h3 {
    font-size: 1.8rem;
  }

  #marques h2,
  #actualites h2,
  #valeurs h2,
  #partenariat h2,
  #engagements h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
}

/* Engagement Cards */
#engagements {
  padding: 60px 0;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

#engagements h2 {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  text-align: center;
  color: #333;
  font-family: "TCCC-UnityHeadline", "Montserrat", "Segoe UI", Arial, sans-serif;
}

/* Uniformisation de tous les titres de section */
#marques h2,
#actualites h2,
#valeurs h2,
#partenariat h2,
#engagements h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  text-align: center;
  color: #333;
  font-family: "TCCC-UnityHeadline", "Montserrat", "Segoe UI", Arial, sans-serif;
}

@media (max-width: 900px) {
  #marques h2,
  #actualites h2,
  #valeurs h2,
  #partenariat h2,
  #engagements h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

.engagement-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.card {
  position: relative;
  width: 350px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-bottom: 15px solid #1a1a1a;
}

.card .header {
  position: relative;
  width: 100%;
  height: 80px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card .content {
  position: relative;
  width: 100%;
  height: 305px; /* 400px - 80px (header) - 15px (footer line) */
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card .content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  .card {
    width: 100%;
    max-width: 350px;
    height: 380px;
    margin: 0 auto;
  }

  .card .content {
    height: 285px; /* 380px - 80px (header) - 15px (footer line) */
  }
}

.card .header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}

/* Footer */
footer {
  background: #000;
  color: #fff;
  padding: 0 0 40px;
}

.footer-separator {
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 60px;
}

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

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.footer-column {
  position: relative;
  padding: 0 20px;
}

/* Ajout des séparateurs verticaux */
.footer-column:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-column h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

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

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
  opacity: 0.8;
}

.footer-column.social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.location {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
}

.location img {
  width: 32px;
  height: 32px;
}

.location span {
  color: #fff;
  font-size: 0.9rem;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
}

.social-icon img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  margin-top: 40px;
}

.footer-disclaimer {
  margin-bottom: 20px;
}

.footer-disclaimer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-column.social {
    grid-column: 1 / -1;
    align-items: center;
  }

  /* Ajuster les séparateurs pour la vue tablette */
  .footer-column:nth-child(2)::after {
    display: none;
  }

  .footer-column:nth-child(1)::after {
    right: -15px;
  }

  .footer-column:nth-child(3)::after {
    right: -15px;
  }

  .footer-separator {
    margin-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Supprimer les séparateurs en vue mobile */
  .footer-column::after {
    display: none;
  }

  .footer-column {
    padding: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
  }

  .footer-column:last-child {
    border-bottom: none;
  }

  footer {
    padding: 0 0 30px;
  }

  .footer-column {
    text-align: center;
  }

  .location {
    margin: 0 auto;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-separator {
    margin-bottom: 30px;
  }
}

.footer-brand {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  height: 32px;
  width: auto;
}

.footer-logo span {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 300;
}

@media (max-width: 600px) {
  .footer-brand {
    padding: 30px 20px;
  }

  .footer-logo img {
    height: 24px;
  }

  .footer-logo span {
    font-size: 1.2rem;
  }
}

#you-may-like {
  padding: 60px 0;
  background: #fff;
}

#you-may-like h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

#you-may-like .product-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.embla__viewport {
  overflow: hidden;
}

.embla__container {
  display: flex;
  gap: 20px;
  transition: transform 0.3s ease;
}

.embla__slide {
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
}

.product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.product-image-container {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}

.product-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: auto;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: translate(-50%, -50%) scale(1.1);
}

.product-title {
  padding: 15px;
  text-align: center;
  font-weight: 600;
  color: #333;
}

.embla__controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.embla__buttons {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.embla__button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e30613;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  transition: background-color 0.3s ease;
}

.embla__button:hover {
  background: #b31721;
}

.embla__button__svg {
  width: 24px;
  height: 24px;
  color: white;
}

@media (max-width: 1024px) {
  .embla__slide {
    flex: 0 0 calc(33.333% - 13.333px);
  }
}

@media (max-width: 768px) {
  .embla__slide {
    flex: 0 0 calc(50% - 10px);
  }

  #you-may-like h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .embla__slide {
    flex: 0 0 100%;
  }

  #you-may-like .product-carousel {
    padding: 0 20px;
  }

  #you-may-like h2 {
    font-size: 1.8rem;
  }
}

.health-notice {
  background: #fff;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
}

.health-notice p {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 1.4rem;
  color: #000;
  font-weight: 500;
  line-height: 1.4;
}

.health-notice a {
  color: #000;
  text-decoration: none;
}

.health-notice i {
  font-style: italic;
  color: #000;
}

@media (max-width: 768px) {
  .health-notice {
    padding: 30px 0;
  }

  .health-notice p {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  #engagements {
    padding: 30px 0;
  }

  .engagement-cards {
    gap: 20px;
    padding: 0 15px;
  }

  .card {
    max-width: 300px;
  }
}

#offre-moment {
  padding: 60px 0;
  background: #f8f8f8;
  text-align: center;
}

#offre-moment h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 15px;
  text-align: center;
  color: #333;
  font-family: "TCCC-UnityHeadline", "Montserrat", "Segoe UI", Arial, sans-serif;
}

#offre-moment .subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  font-weight: 300;
}

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

.offre-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.offre-image {
  flex: 0 0 40%;
  padding: 0;
  background: #e30613;
  position: relative;
  min-height: 400px;
}

.offre-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s ease;
}

.offre-card:hover .offre-image img {
  transform: scale(1.2);
}

.offre-content {
  flex: 0 0 60%;
  padding: 40px;
  text-align: left;
}

.offre-content h3 {
  font-size: 2rem;
  color: #e30613;
  margin-bottom: 20px;
  font-family: "TCCC-UnityHeadline", "Montserrat", "Segoe UI", Arial, sans-serif;
}

.offre-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-decouvrir {
  display: inline-block;
  padding: 12px 30px;
  background: #e30613;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  font-family: "TCCC-UnityHeadline", "Montserrat", "Segoe UI", Arial, sans-serif;
}

.btn-decouvrir:hover {
  background: #b31721;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .offre-card {
    flex-direction: column;
  }

  .offre-image {
    flex: 0 0 auto;
    width: 100%;
    padding: 30px;
  }

  .offre-content {
    flex: 0 0 auto;
    width: 100%;
    padding: 30px;
    text-align: center;
  }

  .offre-content h3 {
    font-size: 1.8rem;
  }

  #offre-moment h2 {
    font-size: 2rem;
  }

  #offre-moment .subtitle {
    font-size: 1.1rem;
    padding: 0 20px;
  }
}

/* === PAGE À PROPOS === */

#about-main {
  background: #fff;
  max-width: 1200px;
  margin: 40px auto 0 auto;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  padding: 40px 20px 60px 20px;
}

.about-hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.about-hero-text {
  flex: 2;
}
.about-hero-text h2 {
  font-size: 2.2rem;
  color: #e30613;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-hero-logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero-logo img {
  max-width: 220px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.about-president {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.president-card {
  background: #e30613;
  color: #fff;
  border-radius: 18px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 260px;
  max-width: 320px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.president-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 16px;
  border: 4px solid #fff;
}
.president-info h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: #fff;
}
.president-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.about-description {
  flex: 3;
  font-size: 1.1rem;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-values {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.value-card {
  background: #fafafa;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 24px 18px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.value-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 12px;
}
.value-card h3 {
  color: #e30613;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.98rem;
  color: #444;
}

.about-ambassador {
  margin-bottom: 40px;
}
.about-ambassador h2 {
  text-align: center;
  font-size: 2rem;
  color: #222;
  margin-bottom: 24px;
}
.ambassador-card {
  display: flex;
  align-items: center;
  gap: 32px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 24px 18px;
  max-width: 700px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.ambassador-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #e30613;
}
.ambassador-info h3 {
  color: #e30613;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.ambassador-info p {
  font-size: 1rem;
  color: #333;
}

.about-committee {
  margin-top: 40px;
  margin-bottom: 40px;
}
.about-committee h2 {
  text-align: center;
  font-size: 2rem;
  color: #222;
  margin-bottom: 24px;
}
.committee-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.committee-member {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 18px 12px;
  min-width: 160px;
  max-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.committee-member img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.committee-member img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.committee-member h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #222;
}

.committee-member span {
  font-size: 0.95rem;
  color: #e30613;
}

@media (max-width: 900px) {
  #about-main {
    padding: 20px 5px 40px 5px;
  }
  .about-hero-content,
  .about-president {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .about-values {
    flex-direction: column;
    gap: 18px;
  }
  .ambassador-card {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .committee-list {
    gap: 14px;
  }
}

.section-separator {
  width: 100%;
  height: 32px;
  background: linear-gradient(90deg, #f8f8f8 0%, #e30613 50%, #f8f8f8 100%);
  opacity: 0.12;
  margin: 40px 0;
  border: none;
  border-radius: 8px;
}

/* === MOT DU CEO === */
#mot-ceo {
  background: #fff;
  max-width: 1200px;
  margin: 40px auto 0 auto;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  padding: 40px 20px 60px 20px;
}
.mot-ceo-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.mot-ceo-card {
  background: #e30613;
  color: #fff;
  border-radius: 18px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 260px;
  max-width: 320px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.mot-ceo-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 16px;
  border: 4px solid #fff;
}
.mot-ceo-card h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: #fff;
}
.mot-ceo-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.mot-ceo-description {
  flex: 3;
  font-size: 1.1rem;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 900px) {
  #mot-ceo {
    padding: 20px 5px 40px 5px;
  }
  .mot-ceo-content {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

/* === PAGE PRODUIT === */
#produit {
  background: #f8f8f8;
  padding: 40px 0;
  margin: 0;
  width: 100%;
}

.produit-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
}

.produit-info {
  flex: 1;
  padding-right: 2rem;
}

.produit-info h1 {
  color: #e30613;
  font-size: 2rem;
  margin-bottom: 18px;
  font-family: "TCCC-UnityHeadline", "Montserrat", Arial, sans-serif;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.produit-desc {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 24px;
  line-height: 1.6;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

.nutri-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 18px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  background: rgba(255, 255, 255, 0.9);
}

.nutri-row {
  display: flex;
  background: rgba(248, 248, 248, 0.9);
  border-bottom: 1px solid rgba(238, 238, 238, 0.8);
}

.nutri-row:last-child {
  border-bottom: none;
}

.nutri-header {
  background: #e30613;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.nutri-row > div {
  flex: 1;
  text-align: center;
  padding: 10px 0;
}

.nutri-pourcent {
  background: rgba(255, 240, 243, 0.9);
  color: #e30613;
  font-weight: 600;
}

.produit-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 220px;
  padding: 20px;
}

.produit-image img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.produit-image img:hover {
  transform: scale(1.05);
}

.produit-selector {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.05);
  margin: 2rem auto;
  max-width: 1200px;
  border-radius: 999px;
}

.selector-btn {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.selector-btn:hover {
  transform: translateY(-5px);
}

.selector-btn.active {
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.selector-btn img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
  #produit {
    padding: 40px 0;
  }

  .produit-header {
    flex-direction: column;
    padding: 1rem;
    margin: 0 1rem;
  }

  .produit-info {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .produit-selector {
    flex-wrap: wrap;
    margin: 1rem;
  }

  .selector-btn img {
    width: 40px;
    height: 40px;
  }
}

/* Mini-slider styles */
.mini-slider {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.mini-slider-container {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.9);
}

.mini-slider-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: auto;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  object-fit: contain;
}

.mini-slider-container img.active {
  opacity: 1;
}

.mini-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.mini-slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.mini-slider-dots .dot.active {
  background: #e30613;
  transform: scale(1.2);
}

.mini-slider-dots .dot:hover {
  background: #e30613;
  transform: scale(1.2);
}

/* Ajustement des styles existants */
.produit-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 220px;
  padding: 20px;
}

@media (max-width: 768px) {
  .mini-slider {
    max-width: 250px;
  }

  .mini-slider-container {
    height: 250px;
  }

  .mini-slider-container img {
    width: 90%;
  }
}

.produit-slide {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.produit-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.produit-slider {
  width: 100%;
  position: relative;
  min-height: 400px; /* Hauteur minimale pour éviter les sauts */
}

#ou-produits {
  background: #ffffff;
  padding: 60px 0;
  max-width: 1200px;
  margin: 0 auto;
}

#ou-produits h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  text-align: center;
  color: #333;
}

#ou-produits .follow-ccbbc {
  background: #000;
  border-radius: 20px;
  margin: 40px auto 40px auto;
  max-width: 1200px;
  width: 100%;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 48px;
  box-sizing: border-box;
}

#ou-produits .follow-ccbbc-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  font-family: "TCCC-UnityHeadline", "Montserrat", Arial, sans-serif;
  text-shadow: 1px 1px 2px #000;
}

#ou-produits .follow-ccbbc-socials {
  display: flex;
  gap: 24px;
}

#ou-produits .follow-ccbbc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  transition: background 0.2s, color 0.2s, border 0.2s;
  text-decoration: none;
}

#ou-produits .follow-ccbbc-icon:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

@media (max-width: 700px) {
  #ou-produits .follow-ccbbc {
    flex-direction: column;
    gap: 24px;
    padding: 24px 12px;
    width: 98vw;
    max-width: 98vw;
  }
  #ou-produits .follow-ccbbc-title {
    font-size: 1.3rem;
    text-align: center;
  }
}

@media (max-width: 900px) {
  #ou-produits .follow-ccbbc-title {
    display: none;
  }
}

.about-banner {
  margin-top: 40px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 18px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
}
.about-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 900px) {
  .about-banner {
    height: 120px;
    border-radius: 12px;
  }
}

#about-ceo-message {
  padding: 60px 0;
  background: #ffffff;
  margin-top: 40px;
}

.ceo-message-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 30px;
}

.ceo-message-left {
  flex: 1;
  aspect-ratio: 1/1;
  max-width: 400px;
}

.ceo-message-left .ceo-message-card {
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
}

.ceo-message-left .card-content {
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ceo-message-left .ceo-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.ceo-message-right {
  flex: 1;
}

.ceo-message-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.ceo-message-card .card-content {
  text-align: left;
}

.ceo-message-card .card-content h3 {
  color: #e30613;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.ceo-message-card .card-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .ceo-message-container {
    flex-direction: column;
  }

  .ceo-message-left,
  .ceo-message-right {
    width: 100%;
  }
}

#news-articles {
  background: #ffffff;
  padding: 60px 0;
  max-width: 1200px;
  margin: 0 auto;
}

#news-articles h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  text-align: center;
  color: #333;
  font-family: "TCCC-UnityHeadline", "Montserrat", "Segoe UI", Arial, sans-serif;
}

.news-item {
  display: none;
  flex-direction: column;
  margin-bottom: 40px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.news-item.active {
  display: flex;
}

.news-images {
  width: 100%;
  display: flex;
  gap: 10px;
  padding: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.news-images img {
  flex: 1;
  min-width: 200px;
  max-width: calc(33.333% - 7px);
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.news-content {
  width: 100%;
  padding: 0 30px 30px 30px;
}

.news-content h2 {
  color: #e30613;
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-family: "TCCC-UnityHeadline", "Montserrat", "Segoe UI", Arial, sans-serif;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.news-date {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.news-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.news-tag {
  background: #f0f0f0;
  color: #e30613;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.news-tag:hover {
  background: #e30613;
  color: white;
  cursor: pointer;
}

@media (max-width: 600px) {
  .news-meta {
    gap: 10px;
  }

  .news-tags {
    gap: 6px;
  }

  .news-tag {
    padding: 3px 10px;
    font-size: 0.8rem;
  }
}

.news-expand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e30613;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  user-select: none;
  margin-top: 15px;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(227, 6, 19, 0.1);
}

.news-expand:hover {
  background: rgba(227, 6, 19, 0.2);
  transform: translateY(-2px);
}

.news-expand i {
  transition: transform 0.3s ease;
}

.news-expand.active i {
  transform: rotate(180deg);
}

.news-content .hidden-text {
  display: none;
  margin-top: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 15px;
  background: #f8f8f8;
  border-radius: 10px;
  border-left: 4px solid #e30613;
}

.news-content .hidden-text.show {
  display: block;
  opacity: 1;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
  padding: 20px;
}

.pagination-numbers {
  display: flex;
  gap: 10px;
}

.pagination-btn,
.pagination-number {
  padding: 8px 16px;
  border: 2px solid #e30613;
  background: transparent;
  color: #e30613;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-btn:hover:not(:disabled),
.pagination-number:hover:not(.active) {
  background: #e30613;
  color: white;
}

.pagination-btn:disabled {
  border-color: #ccc;
  color: #ccc;
  cursor: not-allowed;
}

.pagination-number.active {
  background: #e30613;
  color: white;
  cursor: default;
}

@media (max-width: 900px) {
  #news-articles {
    padding: 0 15px;
    margin: 30px auto;
  }

  .news-item {
    margin-bottom: 30px;
  }

  .news-images {
    padding: 15px;
    gap: 8px;
  }

  .news-images img {
    min-width: 180px;
    max-width: calc(50% - 4px);
    height: 130px;
  }

  .news-content {
    padding: 0 20px 20px 20px;
  }

  .news-content h2 {
    font-size: 1.5rem;
  }

  .news-content p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  #news-articles {
    padding: 0 10px;
    margin: 20px auto;
  }

  .news-item {
    margin-bottom: 20px;
    border-radius: 10px;
  }

  .news-images {
    padding: 10px;
    gap: 6px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #e30613 #f0f0f0;
    -webkit-overflow-scrolling: touch;
  }

  .news-images::-webkit-scrollbar {
    height: 6px;
  }

  .news-images::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
  }

  .news-images::-webkit-scrollbar-thumb {
    background: #e30613;
    border-radius: 3px;
  }

  .news-images img {
    flex: 0 0 auto;
    min-width: 160px;
    max-width: none;
    width: 160px;
    height: 120px;
  }

  .news-content {
    padding: 0 15px 15px 15px;
  }

  .news-content h2 {
    font-size: 1.3rem;
  }

  .news-content p {
    font-size: 0.95rem;
  }

  .news-date {
    font-size: 0.85rem;
  }

  .news-expand {
    font-size: 0.9rem;
  }
}

/* Styles pour la section career-intro */
#career-intro {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.career-content h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #e30613;
}

.career-text {
  display: grid;
  gap: 20px;
}

.career-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

/* Styles pour la section job-offers */
#job-offers {
  padding: 80px 0;
  background-color: #fff;
}

#job-offers h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #e30613;
}

.job-offers-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.job-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.job-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.job-details {
  margin-bottom: 20px;
}

.job-date,
.job-deadline {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 5px;
}

.btn-more {
  display: inline-block;
  padding: 10px 25px;
  background-color: #e30613;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-more:hover {
  background-color: #c00510;
}

/* Media queries pour la responsivité */
@media (max-width: 768px) {
  #career-intro,
  #job-offers {
    padding: 60px 0;
  }

  .career-content h2,
  #job-offers h2 {
    font-size: 2rem;
  }

  .career-text p {
    font-size: 1rem;
  }

  .job-card {
    padding: 20px;
  }

  .job-card h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  #career-intro,
  #job-offers {
    padding: 40px 0;
  }

  .career-content h2,
  #job-offers h2 {
    font-size: 1.8rem;
  }

  .job-offers-grid {
    grid-template-columns: 1fr;
  }
}

/* Styles pour la page de détail d'une offre d'emploi */
.career-intro {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.job-details-container h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #e30613;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  justify-content: center;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 20px;
  border-radius: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.job-meta-item i {
  color: #e30613;
  font-size: 1.2rem;
}

.job-meta-item span {
  color: #333;
  font-size: 1rem;
}

.job-description {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.job-description h3 {
  color: #e30613;
  font-size: 1.5rem;
  margin-bottom: 20px;
  margin-top: 30px;
}

.job-description h3:first-child {
  margin-top: 0;
}

.job-description p {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.job-description ul {
  list-style: none;
  padding-left: 20px;
  margin-bottom: 20px;
}

.job-description ul li {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.8;
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.job-description ul li::before {
  content: "•";
  color: #e30613;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.job-apply {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.btn-apply {
  display: inline-block;
  padding: 15px 40px;
  background-color: #e30613;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-apply:hover {
  background-color: #c00510;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(227, 6, 19, 0.2);
}

.share-job {
  display: flex;
  align-items: center;
  gap: 15px;
}

.share-job span {
  color: #333;
  font-size: 1rem;
}

.social-share {
  display: flex;
  gap: 12px;
}

.social-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-share a:hover {
  background: #e30613;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .career-intro {
    padding: 60px 0;
  }

  .job-details-container h2 {
    font-size: 2rem;
  }

  .job-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .job-meta-item {
    justify-content: center;
  }

  .job-description {
    padding: 30px 20px;
  }

  .job-description h3 {
    font-size: 1.3rem;
  }

  .job-description p,
  .job-description ul li {
    font-size: 1rem;
  }

  .job-apply {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-apply {
    width: 100%;
    text-align: center;
  }

  .share-job {
    flex-direction: column;
    align-items: center;
  }
}

/* Styles pour la section follow-ccbbc */
#follow-ccbbc .follow-ccbbc {
  background: #000;
  border-radius: 20px;
  margin: 40px auto 40px auto;
  max-width: 1200px;
  width: 100%;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 48px;
  box-sizing: border-box;
}

#follow-ccbbc .follow-ccbbc-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  font-family: "TCCC-UnityHeadline", "Montserrat", Arial, sans-serif;
  text-shadow: 1px 1px 2px #000;
}

#follow-ccbbc .follow-ccbbc-socials {
  display: flex;
  gap: 24px;
}

#follow-ccbbc .follow-ccbbc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  transition: background 0.2s, color 0.2s, border 0.2s;
  text-decoration: none;
}

#follow-ccbbc .follow-ccbbc-icon:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

@media (max-width: 700px) {
  #follow-ccbbc .follow-ccbbc {
    flex-direction: column;
    gap: 24px;
    padding: 24px 12px;
    width: 98vw;
    max-width: 98vw;
  }
  #follow-ccbbc .follow-ccbbc-title {
    font-size: 1.3rem;
    text-align: center;
  }
}

@media (max-width: 900px) {
  #follow-ccbbc .follow-ccbbc-title {
    display: none;
  }
}

/* Styles pour la page Application */
#application-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.application-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.application-hero-text {
  flex: 1;
}

.application-hero-text h1 {
  font-size: 3rem;
  color: #e30613;
  margin-bottom: 20px;
  font-family: "TCCC-UnityHeadline", "Montserrat", Arial, sans-serif;
}

.application-hero-text p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
}

.app-buttons {
  display: flex;
  gap: 20px;
}

.app-store-btn img,
.play-store-btn img {
  height: 50px;
  transition: transform 0.3s ease;
}

.app-store-btn:hover img,
.play-store-btn:hover img {
  transform: translateY(-5px);
}

.application-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.application-hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

#app-features {
  padding: 80px 0;
  background: #ffffff;
}

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

.features-container h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 50px;
}

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

.feature-card {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card i {
  font-size: 2.5rem;
  color: #e30613;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

#app-screenshots {
  padding: 80px 0;
  background: #f8f8f8;
}

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

.screenshots-container h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 50px;
}

.screenshots-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.screenshot {
  flex: 0 0 300px;
  scroll-snap-align: center;
}

.screenshot img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.screenshot:hover img {
  transform: scale(1.05);
}

#app-download {
  padding: 80px 0;
  background: linear-gradient(135deg, #e30613 0%, #b31721 100%);
  color: #fff;
  text-align: center;
}

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

.download-container h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.download-container p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

@media (max-width: 900px) {
  .application-hero-content {
    flex-direction: column;
    text-align: center;
  }

  .application-hero-text h1 {
    font-size: 2.5rem;
  }

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

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .screenshot {
    flex: 0 0 250px;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .app-store-btn img,
  .play-store-btn img {
    height: 40px;
  }
}

/* Formulaire de candidature spontanée - style professionnel */
.spontaneous-form {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  padding: 40px 32px;
  max-width: 700px;
  margin: 40px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.spontaneous-form input[type="text"],
.spontaneous-form input[type="email"],
.spontaneous-form input[type="tel"],
.spontaneous-form input[type="file"],
.spontaneous-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #fafbfc;
  transition: border 0.2s, box-shadow 0.2s;
  margin-top: 6px;
}
.spontaneous-form input[type="text"]:focus,
.spontaneous-form input[type="email"]:focus,
.spontaneous-form input[type="tel"]:focus,
.spontaneous-form input[type="file"]:focus,
.spontaneous-form textarea:focus {
  border: 1.5px solid #e30613;
  outline: none;
  box-shadow: 0 0 0 2px rgba(227, 6, 19, 0.08);
  background: #fff;
}
.spontaneous-form label {
  font-weight: 500;
  color: #222;
  margin-bottom: 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.spontaneous-form input[type="file"] {
  padding: 10px 0;
  background: transparent;
  border: none;
}
.spontaneous-form input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  margin: 0 8px 0 0;
  font: inherit;
  width: 22px;
  height: 22px;
  border: 2px solid #e30613;
  border-radius: 6px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.spontaneous-form input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(227, 6, 19, 0.15);
  border-color: #b31721;
}
.spontaneous-form input[type="checkbox"]::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: #e30613;
  position: absolute;
  top: 3px;
  left: 3px;
  opacity: 0;
  transition: opacity 0.2s;
}
.spontaneous-form input[type="checkbox"]:checked::before {
  opacity: 1;
}
.spontaneous-form .btn-apply {
  background: #e30613;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 14px 38px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(227, 6, 19, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}
.spontaneous-form .btn-apply:hover {
  background: #b31721;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(227, 6, 19, 0.13);
}
.spontaneous-form .form-row {
  display: flex;
  gap: 20px;
}
.spontaneous-form .form-row > * {
  flex: 1;
}
.spontaneous-form .form-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-info label,
.form-info p {
  margin: 0;
  font-size: 0.97rem;
  color: #444;
  font-weight: 400;
}
@media (max-width: 700px) {
  .spontaneous-form {
    padding: 20px 8px;
    gap: 16px;
  }
  .spontaneous-form .form-row {
    flex-direction: column;
    gap: 10px;
  }
}

.custom-uploader {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 8px;
  gap: 8px;
}
.custom-uploader input[type="file"] {
  display: none;
}
.custom-uploader .uploader-box {
  border: 2px dashed #bdbdbd;
  border-radius: 12px;
  background: #fafbfc;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: border 0.2s, background 0.2s;
  position: relative;
}
.custom-uploader .uploader-box.dragover {
  border-color: #7b2ff2;
  background: #f3f0ff;
}
.custom-uploader .uploader-box i {
  font-size: 2.8rem;
  color: #7b2ff2;
  margin-bottom: 4px;
}
.custom-uploader .uploader-text {
  color: #888;
  font-size: 1.05rem;
  font-weight: 500;
}
.custom-uploader .uploader-btn {
  margin-top: 0;
  padding: 12px 0;
  border: none;
  border-radius: 25px;
  background: linear-gradient(90deg, #43e97b 0%, #38f9d7 50%, #7b2ff2 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(123, 47, 242, 0.08);
}
.custom-uploader .uploader-btn:hover {
  background: linear-gradient(90deg, #7b2ff2 0%, #43e97b 100%);
  transform: translateY(-2px);
}
@media (max-width: 700px) {
  .custom-uploader .uploader-box {
    min-height: 90px;
    font-size: 0.95rem;
  }
  .custom-uploader .uploader-btn {
    font-size: 0.95rem;
    padding: 10px 0;
  }
}

.faq-section {
  background: #f5f5f5;
  padding: 60px 0;
}
.faq-container {
  max-width: 1100px;
  margin: 0 auto;
}
.faq-title {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 32px;
  text-align: center;
  font-family: "TCCC-UnityHeadline", "Montserrat", Arial, sans-serif;
  letter-spacing: 1px;
}
.faq-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
}
.faq-img,
.faq-card {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 24px 18px;
  min-width: 220px;
  height: 100%;
}
.faq-img {
  padding: 0;
  background: none;
  box-shadow: none;
  justify-content: stretch;
}
.faq-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  min-height: 220px;
}
.faq-card h3 {
  font-size: 1.1rem;
  color: #e30613 !important;
  margin-bottom: 8px;
}
.faq-card p {
  font-size: 0.98rem;
  color: #444;
  margin-bottom: 10px;
  flex: 1;
}
.faq-card a {
  color: #222;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
@media (max-width: 900px) {
  .faq-row {
    flex-direction: column;
    gap: 18px;
  }
  .faq-img img {
    min-height: 120px;
  }
}

input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  margin: 0 8px 0 0;
  font: inherit;
  width: 22px;
  height: 22px;
  border: 2px solid #e30613;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input[type="radio"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(227, 6, 19, 0.15);
  border-color: #b31721;
}
input[type="radio"]::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e30613;
  position: absolute;
  top: 3px;
  left: 3px;
  opacity: 0;
  transition: opacity 0.2s;
}
input[type="radio"]:checked::before {
  opacity: 1;
}

.contact-flex {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 0 24px;
}
@media (max-width: 900px) {
  .contact-flex {
    flex-direction: column;
    gap: 24px;
    padding: 0 8px;
  }
  .contact-section {
    padding: 24px 0;
  }
}

.contact-intro {
  text-align: center;
  color: #222;
  font-size: 1.08rem;
  margin: 18px 0 0 0;
  line-height: 1.6;
  font-weight: 400;
}

@media (max-width: 900px) {
  header#main-header {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 900px) {
  body {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}
