@import url("https://db.onlinewebfonts.com/c/1a70cbbc74595bbe256ea96e811d9091?family=SuzukiPROHeadline");

@font-face {
  font-family: "SuzukiPROHeadline";
  src: url("https://db.onlinewebfonts.com/t/1a70cbbc74595bbe256ea96e811d9091.eot");
  src: url("https://db.onlinewebfonts.com/t/1a70cbbc74595bbe256ea96e811d9091.eot?#iefix")
      format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/1a70cbbc74595bbe256ea96e811d9091.woff2")
      format("woff2"),
    url("https://db.onlinewebfonts.com/t/1a70cbbc74595bbe256ea96e811d9091.woff")
      format("woff"),
    url("https://db.onlinewebfonts.com/t/1a70cbbc74595bbe256ea96e811d9091.ttf")
      format("truetype"),
    url("https://db.onlinewebfonts.com/t/1a70cbbc74595bbe256ea96e811d9091.svg#SuzukiPROHeadline")
      format("svg");
}

body {
  margin: 0;
  padding: 64px 0 0 0;
  font-family: sans-serif;
  color: #012a7f;
  background-color: white;
  height: 100vh;
  width: 100wh;
}
section {
  padding: 0 10rem;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

.navbar {
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 10rem;
  flex-direction: row-reverse;
}

.logo-container h1 {
  margin: 0;
}

section {
  font-family: "SuzukiPROHeadline";
  font-weight: 400;
  margin: 0 0.3rem;
  padding-top: 1.8rem;
}

.title {
  margin-bottom: 2.4rem;
  margin-left: 0.3rem;
  font-weight: 200;
}

.parent {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  width: 100%;
}

.parent img {
  width: 100%;
  display: block;
}

.div1 {
  grid-area: 1 / 1 / 2 / 2;
}
.div2 {
  grid-area: 1 / 2 / 2 / 3;
}

.parent2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 1.1rem;
  grid-row-gap: 10px;
  width: 100%;
}

.parent2 img {
  width: 100%;
  display: block;
}
.parent2 span {
  font-weight: bold;
}

.bottomcarte_text {
  padding: 0 1rem;
  color: black;
  font-family: "Noto Sans Syriac Western", sans-serif;
  font-weight: 200;
  max-width: 80%;
  line-height: 25px;
  font-size: 1.1rem;
  text-align: left;
}

.bottomcarte_text p {
  font-family: "Noto Sans Syriac Western", sans-serif;
  box-sizing: border-box;
}

.bottomcarte {
  display: flex;
  align-items: center;
  flex-direction: row;
  padding: 1rem;
  color: black;
  background-color: white;
}

.chevron i {
  font-size: 1rem;
}

.div3 {
  grid-area: 1 / 1 / 2 / 2;
}
.div4 {
  grid-area: 1 / 2 / 2 / 3;
}

.menu-toggle {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.hamburgermenu {
  display: flex;
  cursor: pointer;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding-left: 1rem;
}

.hamburgermenu h3 {
  font-size: 1rem;
}

.close-icon {
  font-size: 1.4rem;
  display: none !important;
}

.hamburger-icon {
  display: block !important;
}

.menu-toggle:checked + nav .hamburgermenu .hamburger-icon {
  display: none !important;
}

.menu-toggle:checked + nav .hamburgermenu .close-icon {
  display: block !important;
}

.hamburger-menu-overlay {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background-color: white;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 769px) {
  .hamburger-menu-overlay {
    transform: translateY(-100%);
  }

  .menu-toggle:checked ~ .hamburger-menu-overlay {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}


@media (max-width: 768px) {
  .hamburger-menu-overlay {
    transform: translateX(-100%);
    top: 0.8rem;
    height: 100%;
    background-color: #f7f7f7;
  }

  .menu-toggle:checked ~ .hamburger-menu-overlay {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}

.hamburger-menu-content {
  display: flex;
  height: 100%;
  padding: 2rem;
  gap: 3rem;
    border-top: solid rgba(0, 0, 0, 0.248) 1px;
}

.menu-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.menu-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hamburger-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hamburger-menu-list li {
  width: 100%;
}

.hamburger-menu-list a {
  display: block;
  text-decoration: none;
  color: #012a7f;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.menu-experiences {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.experience-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

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

.experience-card h4 {
  padding: 1rem;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #012a7f;
  text-transform: uppercase;
  text-align: center;
}

/* Tel */
@media (max-width: 768px) {
  .hamburger-menu-content {
    flex-direction: row;
    justify-content: space-between;
    padding: 3.5rem 0;
    gap: 1rem;
  }
  
  .menu-left {
    flex: 1;
  }
  
  .menu-right {
    flex: 1;
  }
  
  .menu-experiences {
    display: none;
  }
  
  .hamburger-menu-list a {
    font-size: 0.9rem;
    font-family: "SuzukiPRORegular";
    font-weight: 200;
    border-radius: 5px;
    margin: 0 1rem;
    padding: 0.5rem 0;
    border-bottom: none;
  }
  
  .hamburger-menu-list {
    gap: 1rem;
  }
  
  
  .menu-toggle:checked + nav .hamburgermenu h3 {
    display: none;
  }
  
  
  .menu-toggle:checked + nav .navbar {
    padding: 1rem 0;
  }
}

@media (min-width: 769px) {
  .hamburger-menu-content {
    padding: 2rem 10rem;
    gap: 0;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .menu-left {
    flex: none;
    width: 100%;
  }
  
  .menu-right {
    flex: none;
    width: 100%;
    margin-top: 1rem;
    padding-left: 1rem;
  }
  
  .menu-experiences {
    display: none;
  }
  
  .hamburger-menu-list a {
    font-size: 0.9rem;
    font-family: "SuzukiPRORegular";
    font-weight: 200;
    padding: 0.5rem 0;
    border-bottom: none;
    text-transform: none;
    border-radius: 5px;
    margin: 0 1rem;
  }
  
  .hamburger-menu-list {
    gap: 1rem;
    border-top: solid rgba(0, 0, 0, 0.208) 1px;
  }

  .menu-toggle:checked + nav .hamburgermenu h3 {  
    display: none;
  }
  
  .menu-toggle:checked + nav .navbar {
    padding: 1.6rem 10rem;
  }
}

.navbar_droite {
  color: black;
  padding-right: 10px;
}

.navbar_droite a {
  text-decoration: none;
}

.navbar_droite_bouton h3 {
  color: black;
}

.navbar_droite_texte span {
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "Sarina", cursive;
}

.navbar_droite_texte {
  color: #033144;
  font-size: 0.9rem;
  font-family: "Ubuntu Sans", sans-serif;
  font-weight: bold;
  margin-bottom: 2.1rem;
}

.navbar_droite h3 {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Ubuntu Sans", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1px;
  font-size: 0.6rem;
}

@media (max-width: 768px) {
  .navbar_droite {
    text-align: right;
  }
  
  .navbar_droite h3 {
    justify-content: end;
  }
  
  .navbar_droite_bouton {
    text-align: right;
  }
}

.navbar_droite_image {
  width: 1.3rem;
}

#bandeau {
  height: 50rem;
}
#imgbandeau {
  background-image: url(./img/bandeau1.jpg);
  background-size: cover;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
}

#imgbandeau a {
  border: solid 2px white;
  padding: 10px;
  text-decoration: none;
  color: white;
  width: fit-content;
  height: fit-content;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
@media (max-width: 900px) {
  #bandeau {
    display: none;
  }
  section {
    padding: 0;
  }
  .hamburgermenu h3 {
    display: none;
  }
  .navbar {
    display: flex;
    flex-direction: row;
    padding: 0.9rem 0;
  }
  .parent,
  .parent2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 700px) {
  #bandeau {
    display: none;
  }
  section {
    padding: 0;
  }
  .hamburgermenu h3 {
    display: none;
  }
  .parent,
  .parent2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .vide {
    display: none;
  }
}

#actualites {
  margin-bottom: 1rem;
}

/* DEMANDE ESSAI */

#bandeaua {
  margin: 0;
  padding: 0;
  background-image: url(img/bga.jpg);
  background-position: top;
  width: 100%;
  height: 100%;
  background-size: cover;
  max-height: 55%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#bandeaufin {
  margin: 0;
  padding: 0;
  background-image: url(img/bgfin.jpg);
  background-position: top;
  width: 100%;
  height: 100%;
  background-size: cover;
  max-height: 55%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#bandeaudemandeessai {
  margin: 0;
  padding: 0;
  background-image: url(img/backgroundbandeau.jpg);
  background-position: bottom;
  width: 100%;
  height: 100%;
  background-size: cover;
  max-height: 55%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.bandeaudemandeessaibienvenue {
  color: black;
  font-size: 3rem;
  text-transform: uppercase;
  padding: 0;
  margin: 0.7rem 0 0 0;
  font-weight: 700;
  font-family: sans-serif;
}

.bandeaudemandeessaititre {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -2px;
  margin-top: 4rem;
  text-transform: uppercase;
}

.cleicon path {
  fill: #012a7f;
}

.cleicona2 path {
  fill: #012a7f;
}

.cleicona2 {
  margin-bottom: 2rem;
}

.etape {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: row;
  gap: 10px;
}

.chevron-etape {
  color: #012a7f;
  font-size: 1.8rem;
  margin-right: 0.5rem;
  align-self: center;
}

.etape_slash {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.etape h1 {
  padding: 0.2rem 1.2rem;
  border: #012a7f 1.4px solid;
  font-weight: 700;
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
}

.etape_slash h2 {
  font-family: sans-serif;
  font-weight: 200;
}

.etape_slash h3 {
  font-family: sans-serif;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
}

#bandeaudemandeessai p {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: sans-serif;
  text-transform: uppercase;
}

.bandeauparagraphe {
    font-size: 1.2rem;
  font-weight: 700;
  font-family: sans-serif;
  text-transform: uppercase;
}

#codepostalinput {
  background-image: url(img/cp.svg);
  background-repeat: no-repeat;
  background-position: 10px center;
  padding: 1rem 3rem;
  border: solid #dddddd 2px;
  border-radius: 3px;
  color: #393939;
  text-align: left;
  width: 20rem;
  height: 1rem;
}

#codepostalinput::placeholder {
  color: #999999;
  font-size: 1.2rem;
  font-weight: 300;
  font-family: sans-serif;
  line-height: 1rem;
}
.codepostaldiv {
  background-color: #0d3ebe;
  padding: 3rem;
  width: 75%;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: column;
}

#codepostal {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0;
  margin-top: 2rem;
  color: white;
  font-family: sans-serif;
}

.codepostaldiv h3 {
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 2rem;
}

#permismoto {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
}

#permismoto h3 {
  font-family: "Montserrat";
  text-transform: uppercase;
}

#permismotoboutons {
  margin-top: 3rem;
}

#permismotoboutons a {
  background-color: #012a7f;
  color: white;
  text-decoration: none;
  padding: 1.5rem;
  margin: 2rem 2rem;
  border-radius: 10px;
  font-family: "Montserrat";
  font-weight: 700;
}

/* FOOTER */
footer {
  color: black;
  padding: 2rem 0;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.footertop {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10rem;
  background-color: #f7f7f7;
  width: 75%;
  padding: 1rem;
}

.footertop h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footertop ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 5rem;
}

.footertop ul li a {
  color: black;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  transition: opacity 0.3s ease;
}

.footertop ul li a i {
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.footertop ul li a:hover {
  color: #ff4659;
}

.footertop ul li a:hover i {
  animation: bounce 1s ease-in-out;
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }
  20%,
  60%,
  100% {
    transform: scale(1.1);
  }
  40% {
    transform: scale(1);
  }
  80% {
    transform: scale(1.1);
  }
}

.footerbottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footerbottom ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  margin: 0;
  list-style: none;
  width: 75%;
}
.footerbottom ul li img {
  padding: 0 10rem;
}
.footerbottom ul li a {
  text-decoration: none;
  color: black;
  text-transform: uppercase;
  font-weight: 200;
  font-size: 0.7rem;
}

.footerbottom ul li p {
  color: black;
  text-transform: uppercase;
  font-weight: 200;
  font-size: 0.7rem;
}

.footerbottom-para {
  color: black;
  text-transform: uppercase;
  font-weight: 200;
  font-size: 0.9rem;
  margin-bottom: 4rem;
  text-align: center;
}

/* GALERIE DE MOTOS */
.motorcycle-gallery {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.category-section {
  padding: 0;
  width: 100%;
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.line {
  height: 1px;
  background-color: #d4d4d4;
  flex: 1;
}

.category-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #012a7f;
  margin: 0;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0px;
  font-family: "Montserrat", sans-serif;
}

.motorcycles-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 0 3rem;
  width: 100%;
}

.motorcycle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  flex: 0 0 auto;
  width: 180px;
  margin: 0.5rem 0;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}


.motorcycle-item img {
  width: 100%;
  height: auto;
  max-width: 9rem;
  object-fit: contain;
  padding:  0.5rem 4rem;
  margin-bottom: 0.8rem;
}

.motorcycle-name {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  color: rgb(57, 57, 57);
  text-align: center;
  margin: 0;
  padding: 0 0 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.motorcycle-name:hover {
  color: #012a7f;
}

.motorcycle-name:hover::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 8px;
  background-color: #012a7f;
}

@media (max-width: 400px) {
  .motorcycle-item {
    width: 100px;
  }
  
  .motorcycle-item img {
    max-width: 80px;
  }
}

@media (max-width: 1200px) {
  .motorcycle-item {
    width: 160px;
  }
  
  .motorcycle-item img {
    max-width: 140px;
  }
}

@media (max-width: 900px) {
  .motorcycles-grid {
    gap: 1rem;
  }
  
  .motorcycle-item {
    width: 140px;
    margin: 0.3rem;
  }
  
  .motorcycle-item img {
    max-width: 120px;
  }
  
  .category-title {
    font-size: 2rem;
  }
  
  .line {
    max-width: 100px;
  }
}

@media (max-width: 600px) {
  .motorcycles-grid {
    gap: 0.8rem;
  }
  
  .motorcycle-item {
    width: 120px;
    margin: 0.2rem;
  }
  
  .motorcycle-item img {
    max-width: 100px;
  }
  
  .category-title {
    font-size: 1.5rem;
    padding: 0 1rem;
  }
  
  .line {
    max-width: 50px;
  }
  
  .motorcycle-gallery {
    padding: 1rem;
  }
}

@media (max-width: 400px) {
  .motorcycles-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    max-width: 300px;
  }
  
  .category-header {
    gap: 1rem;
  }
}

/* FORMULAIRE */
form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form select {
  padding: 1rem 1.5rem;
  border: 2.5px solid #dddddd;
  border-radius: 3px;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #666;
  margin-bottom: 2rem;
  background-color: #fff;
  transition: all 0.3s ease;
  outline: none;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="tel"]:focus,
form select:focus {
  border-color: #012a7f;
  background-color: white;
  box-shadow: 0 0 5px rgba(1, 42, 127, 0.2);
}

form input::placeholder {
  color: #999;
  font-weight: 400;
}

form select {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><rect x="2" y="2" width="26" height="26" fill="white" stroke="%23012a7f" stroke-width="2" rx="4"/><path fill="%23012a7f" d="M15 18L10 13h10z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 30px;
  cursor: pointer;
}

form select option {
  padding: 0.5rem;
  background-color: white;
  color: #333;
}

form input[required]::placeholder,
form select[required] {
  position: relative;
}

@media (max-width: 768px) {
  form {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 1rem;
  }
}

@media (max-width: 900px) {
  form {
    margin: 2rem 1rem;
  }
}

.form-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 1rem;
}

.consent-section {
  width: 100%;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.consent-checkbox {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  border-radius: 50%;
  background-color: white;
  flex-shrink: 0;
  position: relative;
}

.consent-checkbox:checked + .checkmark {
  background-color: #ff0000;
  border-color: #000;
}

.consent-checkbox:checked + .checkmark::after {
  display: none;
}

.submit-section {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 2rem;
  text-align: center;
}

.submit-btn {
  background-color: #012a7f;
  color: white;
  border: none;
  padding: 1.4rem 8rem;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 5px;
  min-width: 200px;
}

.submit-btn:hover {
  background-color: #0c388a;
}

@media (max-width: 768px) {
  .consent-section,
  .submit-section {
    padding: 0 1rem;
  }
  
  .consent-label {
    font-size: 0.8rem;
  }
  
  .submit-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}

/* PAGE DE CONFIRMATION */
.confirmation-page {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.confirmation-content {
  text-align: center;
}

.confirmation-content h1 {
  color: #012a7f;
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.info-item {
  padding: 0.8rem;
  background-color: white;
  border-radius: 5px;
  border-left: 4px solid #012a7f;
  font-family: "Montserrat", sans-serif;
}

.info-item strong {
  color: #012a7f;
  font-weight: 600;
}

.next-steps {
  background-color: #e8f4fd;
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid #012a7f;
}

.next-steps h3 {
  color: #012a7f;
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.next-steps p {
  font-family: "Montserrat", sans-serif;
  color: #333;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.error-message {
  background-color: #ffe6e6;
  border: 2px solid #ff4444;
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem 0;
}

.error-message h2 {
  color: #ff4444;
  font-family: "Montserrat", sans-serif;
}

.return-link {
  margin-top: 3rem;
}

.btn-return {
  background-color: #012a7f;
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-return:hover {
  background-color: #0a3d99;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(1, 42, 127, 0.3);
}

@media (max-width: 768px) {
  .confirmation-content h1 {
    font-size: 1.8rem;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .confirmation-page {
    padding: 2rem 1rem;
  }
}
