/* Global Styles */

/* Import Tailwind CSS Base Styles */
@import url("./tailwind.css");

/* Inter */
@font-face {
  font-family: "Inter";
  src: url("/assetsFASGW/fontsSAD/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assetsFASGW/fontsSAD/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "League Spartan";
  src: url("/assetsFASGW/fontsSAD/LeagueSpartan-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("/assetsFASGW/fontsSAD/lato-black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #fff;
  --black: #000;
  --grey: #3a4f5c;
  --font-family: "Inter", sans-serif;
  --second-family: "Lato", sans-serif;
  --third-family: "League Spartan", sans-serif;
  --font3: "Fredoka", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #000;
  background: #f6f6f6;
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

p {
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
}

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

li {
  padding: 0;
  margin: 0;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

/* Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0;
}

@media (max-width: 1240px) {
  .container {
    padding: 0 15px;
  }
}

/* Global Styles */

header {
  width: 100%;
  padding: 21px 0;

  background: #1d1206;
}

.header_content {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.second_header nav {
  width: 100%;
}

.second_header nav ul {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 61px;
}

.second_header nav ul li a {
  color: var(--white, #fff);

  /* p_17px */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 22.1px */
}

.third_header {
  width: 100%;
  max-width: 329px;
}

.third_header a {
  display: flex;
  width: 100%;
  max-width: 329px;
  padding: 12px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: #b32a0b;
  color: #fff;
  text-align: center;
  font-family: "League Spartan";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 137.5%; /* 27.5px */
}
/* Burger Menu Styles */

.burger_menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.burger_menu span {
  display: block;
  width: 100%;
  height: 3px;
  background: #b32a0b;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger_menu.active span:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}

.burger_menu.active span:nth-child(2) {
  opacity: 0;
}

.burger_menu.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Styles */

.mobile_menu {
  display: none;
  position: fixed;
  top: 77px;
  left: 0;
  right: 0;
  width: 100%;
  background: #1d1206;
  z-index: 1000;
  animation: slideDown 0.3s ease;
}

.mobile_menu.active {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile_menu ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 20px 15px;
  list-style: none;
}

.mobile_menu ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile_menu ul li:last-child {
  border-bottom: none;
}

.mobile_menu ul li a {
  display: block;
  padding: 15px 0;
  color: #fff;
  font-family: Inter;
  font-size: 17px;
  font-weight: 400;
  line-height: 130%;
  transition: color 0.2s ease;
}

.mobile_menu ul li a:hover {
  color: #b32a0b;
}

.mobile_menu_btn {
  background: #b32a0b !important;
  border-radius: 10px;
  padding: 12px 10px !important;
  text-align: center;
  font-family: "League Spartan" !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  margin-top: 10px;
}

/* Media Queries for Burger Menu */

@media (max-width: 768px) {
  .burger_menu {
    display: flex;
  }

  .second_header {
    display: none;
  }

  .third_header {
    display: none;
  }
}

/* Contact Form Styles */

.contact_form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.form_group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.form_group label {
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  color: #1d1206;
  line-height: 130%;
}

.form_group input,
.form_group textarea,
.form_group select {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  color: #1d1206;
  background: #fff;
  transition: border-color 0.2s ease;
}

.form_group input:focus,
.form_group textarea:focus,
.form_group select:focus {
  outline: none;
  border-color: #b32a0b;
  box-shadow: 0 0 0 3px rgba(179, 42, 11, 0.1);
}

.form_group textarea {
  resize: vertical;
  min-height: 165px;
}

.btn_submit {
  width: 100%;
  align-self: flex-start;
  padding: 12px 32px;
  border-radius: 10px;
  background: #b32a0b;
  color: #fff;
  font-family: "League Spartan";
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border: none;
}

.btn_submit:hover {
  background: #992208;
}

.btn_submit:active {
  transform: scale(0.98);
}

.hero_section {
  display: flex;
  width: 100%;
  height: 90vh;
  padding: 10px 0;
  align-items: center;
  gap: 10px;
  background-image: url("/assetsFASGW/imagesFAaf/backgroundFAW/hero-backgroundxgiH.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  justify-content: start;
}

.hero_section .hero_content {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  justify-self: start;
  gap: 10px;
  flex-shrink: 0;
}

.hero_section .hero_content h1 {
  color: var(--white, #fff);
  max-width: 589px;

  /* H1 */
  font-family: Lato;
  font-size: 44px;
  font-style: normal;
  font-weight: 900;
  line-height: 48px; /* 109.091% */
}

.hero_section .hero_content p {
  color: var(--white, #fff);
  max-width: 589px;

  /* p_17px */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 22.1px */
}

.hero_section .hero_content a {
  display: flex;
  width: 100%;
  max-width: 329px;
  padding: 12px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: #b32a0b;

  color: #fff;
  text-align: center;
  font-family: "League Spartan";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 137.5%; /* 27.5px */
}

main {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.royal_content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.royal_content h2 {
  color: var(--black, #000);
  text-align: justify;

  /* h2 */
  font-family: Lato;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 48px; /* 150% */
}

.royal_content ul {
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 20px;
  align-self: stretch;
}

@media (max-width: 1240px) {
  .royal_content ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.royal_content ul li {
  display: flex;
  gap: 19px;
  width: 100%;
  min-width: 310px;
  max-width: 390px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;

  border-radius: 3px;
  border: 1px solid #eedecc;
  background: #fff;

  /* effects */
  box-shadow: 0 4px 30px -5px rgba(0, 0, 0, 0.1);
}

.royal_content ul li img {
  width: 100%;
  height: 250px;
  border-radius: 2px;
}

.royal_content ul li .hotel_card_info {
  padding: 0 16px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.royal_content ul li .hotel_card_info .heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.royal_content ul li .hotel_card_info .heading h3 {
  color: var(--black, #000);
  text-align: justify;

  /* h4 */
  font-family: Lato;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 29px; /* 161.111% */
}
.royal_content ul li .hotel_card_info .heading .hetel_review {
  display: flex;
  padding: 2px 0;
  justify-content: center;
  align-items: center;
  gap: 2px;
}

.royal_content ul li .hotel_card_info .heading b {
  color: #827e7e;
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.royal_content ul li .hotel_card_info p {
  color: var(--grey, #3a4f5c);
  text-align: justify;

  /* p_17px */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 22.1px */
}

.royal_content ul li .hotel_card_info .card_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
}

.card_benefits {
  display: flex;
  align-items: center;
  gap: 24px;
}

.royal_content ul li .hotel_card_info a {
  width: 100%;
  max-width: 183px;
  display: flex;
  padding: 12px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 10px;
  background: #b32a0b;

  color: #fff;
  text-align: center;
  font-family: "League Spartan";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 137.5%; /* 27.5px */
}

.wifi_icon {
  display: inline-block;
  background-image: url("/assetsFASGW/iconsSDf/wifi.webp");
  width: 24px;
  height: 24px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.eat_icon {
  display: inline-block;
  background-image: url("/assetsFASGW/iconsSDf/eat.webp");
  width: 24px;
  height: 24px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.bed_icon {
  display: inline-block;
  background-image: url("/assetsFASGW/iconsSDf/bed.webp");
  width: 24px;
  height: 24px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.about_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  align-self: stretch;
}

.about_content h2 {
  color: var(--black, #000);
  text-align: justify;

  /* h2 */
  font-family: Lato;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 48px; /* 150% */
}

.about_content .about_block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}

.about_content .about_block .about_image {
  order: 1;
  background-image: url("/assetsFASGW/imagesFAaf/aboutPxND.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;

  width: 610px;
  height: 445px;
  border-radius: 10px;
  padding: 0;
  margin: 0;
}

@media (max-width: 1240px) {
  .about_content .about_block .about_image {
    width: clamp(312px, 80vw, 610px);
    height: clamp(200px, 60vw, 445px);
  }
}

.about_content .about_block .text_content {
  order: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
}

.about_content .about_block .text_content h3 {
  color: var(--black, #000);

  /* h3 */
  font-family: Lato;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 39px; /* 162.5% */
}

.about_content .about_block .text_content p {
  color: var(--grey, #3a4f5c);

  /* p_17px */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 22.1px */
}

.about_content .about_block .text_content ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}

.about_content .about_block .text_content ul li {
  display: flex;
  align-items: center;
  gap: 24px;
  align-self: stretch;

  color: var(--grey, #3a4f5c);

  /* p_17px */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 22.1px */
}

.li-item {
  display: inline-block;
  background-image: url("/assetsFASGW/iconsSDf/li-item.svg");
  width: 24px;
  height: 24px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 1240px) {
  .about_content .about_block .about_image {
    order: 2;
  }
  .about_content .about_block .text_content {
    order: 1;
  }
  .about_content .about_block {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.why_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.why_content h2 {
  color: var(--color_text, #262729);
  text-align: center;

  /* h2 */
  font-family: Lato;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 48px; /* 150% */
}

.why_content ul {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
}

.why_content ul li {
  display: flex;
  padding: 24px var(--Space-24px, 24px);
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1 0 0;
  border-radius: 3px;
  border: 1px solid #eedecc;
  background: #fff;
  min-width: 290px;
  max-width: 305px;
}

.why_content ul li .heading {
  position: relative;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.why_content ul li .heading b {
  position: absolute;
  align-self: stretch;
  color: #876222;
  text-align: center;
  font-family: Lato;
  font-size: 80px;
  font-style: normal;
  font-weight: 900;
  line-height: 55px; /* 68.75% */

  opacity: 0.1;
  order: 1;
  align-self: center;
}

.why_content ul li .heading h3 {
  align-self: end;
  margin-top: 0;
  color: var(--black, #000);
  text-align: center;

  /* h4 */
  font-family: Lato;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 29px; /* 161.111% */
}

.why_content ul li p {
  color: var(--black, #000);
  text-align: center;

  /* p_17px */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 22.1px */
}

.benefits_content,
.reviews_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.benefits_content h2,
.reviews_content h2 {
  color: var(--color_text, #262729);
  text-align: center;

  /* h2 */
  font-family: Lato;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 48px; /* 150% */
}

.benefits_content ul,
.reviews_content ul {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
}

.benefits_content ul li,
.reviews_content ul li {
  display: flex;
  padding: 24px var(--Space-24px, 24px);
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1 0 0;
  border-radius: 3px;
  border: 1px solid #eedecc;
  background: #fff;
  min-width: 290px;

  max-width: 305px;
}

.benefits_content ul li .heading,
.reviews_content ul li .heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
}

.benefits_content ul li .benefit-first,
.benefits_content ul li .benefit-second,
.benefits_content ul li .benefit-third,
.benefits_content ul li .benefit-fourth {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 99px;
  height: 99px;
  flex-shrink: 0;
}

.benefits_content ul li .benefit-first {
  background-image: url("/assetsFASGW/iconsSDf/benefits-firstiNYn.webp");
}

.benefits_content ul li .benefit-second {
  background-image: url("/assetsFASGW/iconsSDf/benefits-secondAsJd.webp");
}

.benefits_content ul li .benefit-third {
  background-image: url("/assetsFASGW/iconsSDf/benefits-thirdaqbU.webp");
}

.benefits_content ul li .benefit-fourth {
  background-image: url("/assetsFASGW/iconsSDf/benefits-fourthuUdM.webp");
}

.kov_reviews {
  background-image: url("/assetsFASGW/iconsSDf/kov-reviewsrEGL.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.benefits_content ul li h3,
.reviews_content ul li h3 {
  align-self: end;
  margin-top: 0;
  color: var(--black, #000);
  text-align: center;
  align-self: center;

  /* h4 */
  font-family: Lato;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 29px; /* 161.111% */
}

.benefits_content ul li p,
.reviews_content ul li p {
  color: var(--grey, #3a4f5c);
  text-align: center;

  /* p_17px */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 22.1px */
}

footer {
  padding: 24px 0;
  background: #1d1206;
  margin-top: 70px;
  width: 100%;
}

footer .footer_content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

footer .footer_content .logo img {
  width: 82px;
  height: 96px;
}

footer .footer_content .info {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

footer .footer_content .info span {
  color: var(--white, #fff);

  /* h4 */
  font-family: Lato;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 29px; /* 161.111% */
}

footer .footer_content .info a,
footer .footer_content .info p {
  color: var(--white, #fff);

  /* p_17px */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 22.1px */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

footer .footer_content .info ul {
  margin-top: 24px !important;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--Space-16px, 16px);
  align-self: stretch;
}

.best_hotels_page {
  margin-top: 70px;
}

.best_hotels_page_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.best_hotels_page_content h1 {
  color: var(--black, #000);
  text-align: justify;

  /* h2 */
  font-family: Lato;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 48px; /* 150% */
}

.best_hotels_page_content .list_hotels {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.best_hotels_page_content .list_hotels .item {
  width: 100%;
  display: flex;
  padding: 24px var(--Space-24px, 24px);
  align-items: center;
  gap: 16px;

  border-radius: 3px;
  border: 1px solid #eedecc;
  background: #fff;
}

.best_hotels_page_content .list_hotels .item img {
  width: 581px;
  height: auto;
}

@media (max-width: 1024px) {
  .best_hotels_page_content .list_hotels .item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .best_hotels_page_content .list_hotels .item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
}

.best_hotels_page_content .hotel_info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.best_hotels_page_content .hotel_info .heading {
  width: 100%;
  display: flex;
  padding: 8px 0;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  flex-wrap: wrap;
  padding: 10px 0;
}

.best_hotels_page_content .hotel_info .heading h2 {
  color: var(--black, #000);
  text-align: justify;

  /* h4 */
  font-family: Lato;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 29px; /* 161.111% */
}

.best_hotels_page_content .hotel_info .heading .review {
  display: flex;
  padding: 2px 0;
  justify-content: center;
  align-items: center;
  gap: 2px;
}

.best_hotels_page_content .hotel_info .heading b {
  color: #827e7e;
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.hotel_star {
  background-image: url("/assetsFASGW/iconsSDf/starXZqn.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 12px;
  height: 12px;
}

.best_hotels_page_content .hotel_info p {
  color: var(--grey, #3a4f5c);
  text-align: justify;

  /* p_17px */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 22.1px */
}

.list_kov {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.list_kov li {
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: stretch;
}

.best_hotels_page_content .hotel_info a {
  width: 100%;
  display: flex;
  padding: 12px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 10px;
  background: #b32a0b;
  color: #fff;
  text-align: center;
  font-family: "League Spartan";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 137.5%; /* 27.5px */
}

.contact_section {
  margin-top: 40px;
}

.contact_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.contact_content h1 {
  color: var(--black, #000);
  text-align: justify;

  /* h2 */
  font-family: Lato;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 48px; /* 150% */
}

.contact_content .box_content {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  width: 100%;
}

.contact_content .box_content .contact_image {
  background-image: url("/assetsFASGW/imagesFAaf/contactYrIX.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  min-width: 605px;
  min-height: 653px;
}

.contact_content .box_content form {
  display: flex;
  padding: 0 24px;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;

  width: 100%;
}

.contact_content .box_content option {
  display: flex;
  padding: 11px 12px;
  align-items: center;
  align-self: stretch;
  border-bottom: 1px solid #eedecc;
}

.contact_content .box_content option:hover {
  background: #eedecc;
}
/* Notification Styles */

.notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-150px);
  padding: 16px 24px;
  border-radius: 12px;
  background: #22c55e;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  animation: slideDown 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 90%;
  min-width: 300px;
  transition: all 0.3s ease;
}

.notification.show {
  transform: translateX(-50%) translateY(0);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
}

.notification-icon {
  color: #fff;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.notification-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  margin: 0;
  line-height: 1;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.notification-close:hover {
  opacity: 0.8;
}

.notification-success {
  background: #22c55e;
}

.notification-error {
  background: #ef4444;
}

.notification-info {
  background: #3b82f6;
}

@media (max-width: 480px) {
  .notification {
    min-width: 280px;
    left: 20px;
    right: 20px;
    transform: translateY(-150px);
  }

  .notification.show {
    transform: translateY(0);
  }

  .notification-content {
    font-size: 14px;
  }
}

.privacy_section {
  margin-top: 40px;
}

.privacy_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
}

.privacy_content h1 {
  width: 100%;
  color: var(--black, #000);
  text-align: center;

  /* h2 */
  font-family: Lato;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 48px; /* 150% */
}

.privacy_content .box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: start;
  text-align: start;
}

.privacy_content .box span {
  color: var(--black, #000);

  /* h4 */
  font-family: Lato;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 29px; /* 161.111% */
}

.privacy_content .box p,
.privacy_content .box li {
  color: var(--black, #000);

  /* p_17px */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 22.1px */
}

.privacy_content .box ul {
  list-style: disc;
  padding-left: 25px;
}
