body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #eaeaea;
  color: #222;
}
a {
  color: #222;
  text-decoration: none;
}
a:hover {
  color: #37bf35;
  text-decoration: underline;
}
header {
  background: #111;
  color: #37bf35;
  display: flex;
  align-items: center;
  padding: 10px 16px 10px 8px;
  justify-content: space-between;
  position: relative;
}
.center{
	text-align:center;
}
.menu, .user, .cart {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 20px;
}
.logo svg {
  height: 28px;
}
.header-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}
main {
  padding: 0px 0px 1px 0px;
  margin: 0 auto;
}
.subtitle {
  color: #fff;
  background: #111;
  text-align: center;
  font-size: 15px;
  padding: 7px 0 6px 0;
}
.howitworks {
  background: #111;
  border-radius: 16px;
  margin: 16px 8px 12px 8px;
  padding: 10px 14px 10px 14px;
  color: #fff;
}
.howitworks h3 {
  color: #37bf35;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 7px;
  font-weight: bold;
  text-align: center;
}
.howitworks-list {
  padding: 0;
  list-style: none;
  margin: 0;
}
.howitworks-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  margin-bottom: 5px;
}
.howitworks-list li .step {
  background: #37bf35;
  color: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 15px;
  margin-right: 3px;
  flex-shrink: 0;
}

.request-card {
  background: #fff;
  border-radius: 13px;
  margin: 0 8px 15px 8px;
  box-shadow: 0 2px 6px #0001;
  padding: 10px 12px 18px 12px;
}
.step-title {
  color: #37bf35;
  font-weight: bold;
  font-size: 19px;
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-title .step {
  background: #37bf35;
  color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.form-group {
  margin-bottom: 10px;
}
.label {
  font-weight: normal;
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
  margin-top: 7px;
}
.vehicle-type {
  display: flex;
  gap: 9px;
  margin-bottom: 2px;
}
.vehicle-type label {
  flex: 1;
}
.radio-btn {
  background: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 7px 12px 7px 7px;
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  font-size: 15px;
  transition: border .2s, background .2s;
  font-weight: bold;
}
.radio-btn.selected {
  background: #d6f6d6;
  border: 1px solid #37bf35;
  color: #222;
}
.radio-btn svg {
  height: 22px;
}
.brands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 8px;
  margin-bottom: 6px;
}
.brands label {
  width: 100%;
}
.brand-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background: #f5f5f5;
  padding: 7px 12px 7px 7px;
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  transition: border .2s, background .2s;
}
.brand-btn.selected {
  background: #d6f6d6;
  border: 1px solid #37bf35;
}
.brand-btn svg {
  height: 22px;
}
select {
  width: 100%;
  padding: 7px;
  border-radius: 7px;
  border: 1px solid #222;
  font-size: 16px;
  margin-top: 4px;
  margin-bottom: 1px;
}
input[type="email"] {
  width: 100%;
  padding: 7px 0px 7px 0px;
  border-radius: 7px;
  border: 1px solid #222;
  font-size: 16px;
  margin-top: 4px;
  margin-bottom: 1px;
}
.conditions {
  display: flex;
  gap: 9px;
  margin-top: 5px;
  margin-bottom: 8px;
}
.cond-btn {
  flex: 1;
  border-radius: 10px;
  border: 1px solid #222;
  background: #f5f5f5;
  padding: 7px 6px;
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: border .2s, background .2s;
  justify-content: center;
}
.cond-btn.selected {
  background: #d6f6d6;
  border: 1.5px solid #37bf35;
  color: #222;
}
.cond-btn svg {
  height: 18px;
}
.email-group {
  margin-bottom: 10px;
}
.email-label {
  color: #222;
  margin-bottom: 2px;
  margin-top: 9px;
}
.submit-btn {
  width: 100%;
  background: #d6f6d6;
  color: #222;
  border-radius: 10px;
  border: 1px solid #222;
  font-size: 17px;
  padding: 11px 0;
  font-weight: bold;
  cursor: pointer;
  margin-top: 9px;
  transition: background .2s;
  cursor: pointer;
}
.submit-btn:hover {
  background: #37bf35;
  color: #fff;
}

/* Footer */
footer {
  margin: 0 0 0 0;
  padding-bottom: 16px;
  background: none;
  margin-left: auto;
  margin-right: auto;
}
.footer-title {
	text-align:center;
	color:#37bf35;
	font-weight:bold;
	font-size:18px;
	margin-top:7px;
	padding-top:7px;
}
.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 10px 0 7px 0;
}
.socials img {
  height: 36px;
  width: 36px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 4px #0001;
  padding: 4px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
  font-size: 12px;
  color: #222;
}
.footer-links a {
  margin: 0 5px;
}





select:disabled, input:disabled {
  background: #f0f0f0;
  color: #bbb;
  border-color: #eee;
}
.form-group.active .label {
  color: #222;
}
.form-group.active select,
.form-group.active input[type="email"] {
  background: #fff;
  border-color: #6ca1f7;
  color: #222;
}
.submit-btn:disabled {
  background: #cccccc;
  color: #666;
  cursor: not-allowed;
}





@media (max-width: 767px) {
  /* Styles pour mobile */
  
}










@media (min-width: 768px) and (max-width: 1024px) {
  /* Styles pour tablette */
  main {
	box-shadow: 0 2px 8px #0002;
	border-radius: 14px;
	max-width: 850px;
  }
  footer {
	max-width: 850px;
	box-shadow: 0 2px 8px #0002;
	border-top-left-radius: 14px;
	border-top-right-radius: 14px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
  }
}




@media (min-width: 1024px) {
  main {
	box-shadow: 0 2px 8px #0002;
	border-radius: 14px;
	width: 1000px;
  }
  footer {
	width: 1000px;
	box-shadow: 0 2px 8px #0002;
	border-top-left-radius: 14px;
	border-top-right-radius: 14px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
  }
}