body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #222;
  border-color: #ffffff;
  border-radius: 2px;
}
  
header {
  background: transparent;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid #e0e0e0;
}

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

.logo-img {
  width: 150px;
  height: 60px;
  object-fit: contain;
  padding: 2px;
  
}

nav a {
  margin: 0 8px;
  padding: 6px 14px;
  text-decoration: none;
  color: #222;
  font-size: 15px;
  
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  font-size: 15px;
  color: #222;
  font-weight: bold;
  margin-right: 10px;
 text-decoration: none;   
}
.header-phone:hover {
  color: #e62222;
  text-decoration: underline;
}

.login-btn {
  background: #333;
  color: #fff;
  border-radius: 20px;
  padding: 8px 22px;
  font-weight: bold;
  font-size: 15px;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s;
  text-decoration: none;
}
.login-btn:hover {
  background: #555;
  color: #fff;
}


/* body */

.title {
  text-align: center;
  margin-top: 30px;
  font-size: 1.6em;
}

.container-prestations {
  display: flex;
  flex-direction: row;
}

.prestations-content {
  flex: 1;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.sidebar-categories {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.category-btn {
  width: 160px;
  padding: 16px;
  background: #e0e0e0;
  border: none;
  border-radius: 0 20px 20px 0;
  text-align: left;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s, border-radius 0.2s;
}

.category-btn.active {
  background: #bdbdbd;
  border-radius: 0 40px 40px 0;
}

/* Affichage horizontal image + texte pour chaque prestation */
.prestation {
  display: flex;
  align-items: center;
  gap: 32px;
  background: #f7f7f7;
  border-radius: 14px;
  box-shadow: 0 2px 12px #0002;
  margin-bottom: 32px;
  padding: 28px 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.prestation img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.prestation h3 {
  margin: 0 0 8px 0;
  font-size: 1.2em;
  color: #1976d2;
}
.prestation p {
  margin: 0;
  color: #444;
  font-size: 1em;
}


footer {
  background: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 40px 0 20px 0;
  width: 100%;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}
.footer-logo {
  min-width: 160px;
}
.footer-logo div {
  margin-bottom: 8px;
}
.footer-links {
  display: flex;
  gap: 40px;
}
.footer-links > div {
  min-width: 120px;
}
.footer-title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px !important;
}
.footer-links a, .footer-title {
  display: block;
  
  margin-bottom: 6px;
  padding: 4px 8px;
  border-radius: 4px;
  text-decoration: none;
  color: #222;
  font-size: 14px;
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "FontAwesome", Arial, sans-serif;
  font-size: 22px;
}
.footer-social a {
  color: #222;
  text-decoration: none;
}

.social-icon {
  width: 24px;
  height: 24px;
  margin: 0 8px;
  vertical-align: middle;
}

.footer-contact-link {
  color: #333;
  font-weight: bold;
  text-decoration: none;
  margin-left: 8px;
  transition: color 0.2s;
}
.footer-contact-link:hover {
  color: #e62222;
  text-decoration: underline;
}

    

