/* gray-300 */
/* --- Main Content Styles --- */
.contact-page {
  padding-top: 40px;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* Top Section: Support & Call */
.top-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}

.customer-support {
  display: flex;
  align-items: center;
  gap: 20px;
}
.customer-support .support-person {
  text-align: center;
  flex-shrink: 0;
}
.customer-support .support-person img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.customer-support .support-person p {
  margin: 4px 0;
  font-size: 14px;
}
.customer-support .support-person .support-name {
  color: #8693A3;
}
.customer-support .speech-bubble {
  position: relative;
  background-color: #2EEF9E;
  color: white;
  padding: 25px 35px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.customer-support .speech-bubble::before {
  content: "";
  position: absolute;
  left: -15px;
  bottom: 35px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 20px solid #2EEF9E;
  transform: rotate(-20deg);
}

.call-info {
  text-align: left;
}
.call-info .phone-number {
  font-size: 28px;
  color: #8693A3;
  font-weight: 500;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.call-info .availability,
.call-info .secondary-line {
  color: #8693A3;
  font-size: 14px;
  margin: 5px 0;
}

/* Form Section */
.form-section {
  margin-bottom: 60px;
}
.form-section .form-grid {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px 30px;
  align-items: flex-start;
}
.form-section label {
  text-align: right;
  font-weight: 500;
  color: #8693A3;
  padding-top: 12px;
}
.form-section input,
.form-section textarea {
  width: 100%;
  max-width: 450px;
  padding: 12px;
  border: none;
  background-color: #F5F6F8;
  border-radius: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  box-sizing: border-box;
  resize: vertical;
}
.form-section input:focus,
.form-section textarea:focus {
  outline: 2px solid #2EEF9E;
}
.form-section .send-button {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 180px;
  /* Aligns with form fields */
  margin-top: 20px;
  transition: background-color 0.2s;
}
.form-section .send-button .arrow-icon {
  border: 2px solid white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.form-section .send-button:hover {
  background-color: #25d38f;
}
.form-section .alt-email {
  margin-left: 180px;
  margin-top: 20px;
  font-size: 14px;
  color: #8693A3;
}
.form-section .alt-email a {
  color: #2EEF9E;
  text-decoration: none;
  font-weight: 500;
}

/* Address Section */
.address-section .address-details {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.address-section .address-details p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #8693A3;
}

/* --- Footer --- */
footer {
  border-top: 1px solid #EAECEF;
  margin-top: 60px;
  padding-top: 20px;
  text-align: center;
}
footer p {
  color: #8693A3;
  font-size: 14px;
  line-height: 1.6;
}
footer a {
  color: #8693A3;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
footer a:hover {
  text-decoration: underline;
}

/* --- Mobile Responsiveness --- */
/* Tablet View */
@media (min-width: 768px) {
  .form-section .form-grid {
    grid-template-columns: 120px 1fr;
  }
  .form-section .send-button,
  .form-section .alt-email {
    margin-left: 150px;
  }
}
@media (min-width: 480px) {
  .top-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .customer-support {
    flex-direction: column;
  }
  .customer-support .speech-bubble::before {
    left: 50%;
    bottom: -15px;
    top: auto;
    transform: translateX(-50%) rotate(45deg);
    border-top: 15px solid transparent;
    border-left: 15px solid transparent;
    border-right: 15px solid #2EEF9E;
    border-bottom: 15px solid #2EEF9E;
  }
  .call-info {
    text-align: center;
  }
  .call-info .phone-number {
    justify-content: center;
  }
  .form-section h2 {
    text-align: center;
  }
  .form-section .form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .form-section label {
    text-align: left;
    padding-top: 0;
  }
  .form-section input,
  .form-section textarea {
    max-width: 100%;
  }
  .form-section .send-button,
  .form-section .alt-email {
    margin-left: 0;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }
  .form-section .alt-email {
    text-align: center;
  }
  .address-section {
    text-align: center;
  }
  .address-section h2 {
    text-align: center;
  }
  .address-section .address-details {
    flex-direction: column;
    align-items: center;
  }
}
.car-details-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.rent-container {
  display: flex;
  padding-top: 4rem;
}

.car-info {
  flex-basis: 30%;
}
.car-info h1 {
  font-size: 48px;
  margin: 0;
  font-weight: 700;
}
.car-info h2 {
  font-size: 24px;
  margin: 0 0 20px 0;
  font-weight: 400;
  color: #7F7F7F;
}
.car-info .features {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.car-info .features .feature {
  display: flex;
  align-items: center;
  gap: 10px;
}
.car-info .features .feature .icon-bg {
  background-color: #EFEFEF;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}
.car-info .features .feature .icon-bg svg path {
  fill: #4A4A4A;
}
.car-info .features .feature span {
  font-size: 14px;
}
.car-info .features .plus-icon {
  font-size: 24px;
  color: #BDBDBD;
}

.car-image {
  position: relative;
  flex-basis: 40%;
  text-align: center;
}
.car-image img {
  max-width: 100%;
  height: auto;
}
.car-image .show-interior {
  position: absolute;
  top: 20px;
  right: 0;
  background-color: #FDFB83;
  border: none;
  border-radius: 50px;
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.car-image .show-interior .plus-icon {
  background-color: #FDFB83;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  margin-left: 10px;
  font-weight: 400;
  line-height: 1;
}

.benefits {
  background-color: #F0FAF6;
  border-radius: 8px;
  padding: 20px;
  flex-basis: 25%;
  box-sizing: border-box;
}
.benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.benefits ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.benefits .check-icon {
  color: #2EEF9E;
  font-size: 24px;
  margin-right: 10px;
  font-weight: bold;
}
.benefits .all-conditions {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #D4E9E0;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.benefits .arrow-down-icon {
  border: 1px solid #BDBDBD;
  color: #BDBDBD;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.booking-form {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.form-column {
  flex: 1;
}

.form-section h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
.form-section label {
  display: block;
  margin-bottom: 8px;
  color: #7F7F7F;
}
.form-section input[type=text],
.form-section input[type=email],
.form-section .custom-select {
  width: 100%;
  padding: 12px;
  border: 1px solid #E0E0E0;
  background-color: #FFFFFF;
  border-radius: 4px;
  margin-bottom: 15px;
  box-sizing: border-box;
}
.form-section .custom-select {
  position: relative;
  cursor: pointer;
  color: #BDBDBD;
}
.form-section .custom-select.location-select {
  color: #4A4A4A;
  font-weight: 500;
}
.form-section .custom-select .select-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #2EEF9E;
}
.form-section .date-picker-wrapper {
  position: relative;
}
.form-section .info-bubble {
  position: absolute;
  bottom: 100%;
  left: 0;
  background-color: #FEFFD6;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 10px;
  width: 200px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.form-section .info-bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50px;
  border-width: 10px;
  border-style: solid;
  border-color: #FEFFD6 transparent transparent transparent;
}

.details-column input {
  background-color: #F8F9FA;
  border: none;
  border-bottom: 1px solid #E0E0E0;
  border-radius: 0;
  padding-left: 0;
}
.details-column input:focus {
  outline: none;
  border-bottom-color: #2EEF9E;
}

.booking-action {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.customer-support {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.customer-support img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}
.customer-support p {
  margin: 0;
  font-size: 14px;
}
.customer-support .support-name {
  font-weight: 500;
}
.customer-support .ask-me {
  margin-left: auto;
  border-radius: 50px;
  padding: 10px 25px;
  cursor: pointer;
  font-size: 16px;
}

.book-no-credit-card h3 {
  font-size: 24px;
}
.book-no-credit-card p {
  line-height: 1.6;
}
.book-no-credit-card .book-now {
  border-radius: 8px;
  padding: 15px;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}

/* --- Mobile Responsiveness --- */
/* Tablet View */
@media (min-width: 768px) {
  .car-details-section {
    flex-direction: column;
    align-items: center;
  }
  .car-info,
  .car-image,
  .benefits {
    flex-basis: 100%;
    width: 100%;
    max-width: 500px;
  }
  .booking-form {
    flex-wrap: wrap;
  }
  .form-column {
    flex-basis: calc(50% - 10px);
  }
  .booking-action {
    flex-basis: 100%;
  }
}
/* Mobile View */
@media (min-width: 480px) {
  .car-info {
    text-align: center;
  }
  .car-info .features {
    justify-content: center;
  }
  .car-image .show-interior {
    font-size: 12px;
    padding: 8px;
    top: 10px;
  }
  .car-image .show-interior .plus-icon {
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .booking-form {
    flex-direction: column;
  }
  .form-column {
    flex-basis: 100%;
  }
  .info-bubble {
    position: static;
    width: 100%;
    margin-bottom: 15px;
    box-sizing: border-box;
  }
  .info-bubble::after {
    display: none;
  }
  .customer-support {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .customer-support .ask-me {
    margin-left: 0;
  }
}
/* --- Modal Styles --- */
.modal-overlay {
  position: fixed;
  /* Stay in place */
  z-index: 1000;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  /* Black background with opacity */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.modal-content {
  position: relative;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 90%;
  max-height: 90vh;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-content img {
  width: 100%;
  max-width: 800px;
  /* Adjust as needed */
  height: auto;
  display: block;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 25px;
  color: #333;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}

.close-button:hover,
.close-button:focus {
  color: #f00;
}

/* Helper class to hide the modal */
.hidden {
  opacity: 0;
  pointer-events: none;
  /* Prevents interaction when hidden */
}

.featured {
  margin-top: -7%;
  position: relative;
  z-index: 10;
  padding-bottom: 4em;
}
.featured .featured-info {
  display: flex;
  justify-content: center;
  gap: 8%;
  width: 38.7em;
  max-width: 90%;
}
.featured .featured-item {
  width: 46%;
}
.featured .featured-item:nth-child(1) .featured-link {
  background: #b654b4;
}
.featured .featured-item:nth-child(1) .featured-title strong {
  border-bottom-color: #f753ed;
}
.featured .featured-item:nth-child(2) .featured-link {
  background: #4c75ff;
}
.featured .featured-item:nth-child(2) .featured-title strong {
  border-bottom-color: #ec6972;
}
.featured .featured-link {
  display: block;
  position: relative;
  padding-top: 66%;
  border-radius: 0.6em;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: transform 0.2s ease-out;
}
.featured .featured-link:hover {
  transform: scale(1.03);
}
.featured .featured-link:active {
  transform: scale(0.9);
}
.featured .featured-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured .featured-title {
  font-family: "ITC Avant Garde Gothic W01 Bd", sans-serif;
  font-size: 2.8em;
  position: absolute;
  left: 1rem;
  bottom: 0.9em;
  color: #fff;
  max-width: 4em;
  line-height: 0.85;
  letter-spacing: -1px;
  z-index: 1;
}
.featured .featured-title strong {
  border-bottom-width: 5px;
  border-bottom-style: solid;
  display: inline-block;
}
.featured .featured-description {
  font-family: "ITC Avant Garde Gothic W01 Md", sans-serif;
  font-size: 0.75em;
  padding: 0.5em 0 0 0.3em;
  color: #878787;
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
}
.page-title span {
  border-bottom: 4px solid #FF7E7E;
  padding-bottom: 4px;
}

/* Button Color Variations */
.vehicle-selection {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
}
.vehicle-selection .vehicle-item {
  position: relative;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  container-type: inline-size;
}
.vehicle-selection .vehicle-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.vehicle-selection .vehicle-item .vehicle-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.vehicle-selection .vehicle-item .vehicle-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.vehicle-selection .vehicle-item .vehicle-info h3 {
  font-family: "ITC Avant Garde Gothic W01 Bd", sans-serif;
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.vehicle-selection .vehicle-item .vehicle-info p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}
.vehicle-selection .vehicle-item .vehicle-info p:last-of-type {
  margin-bottom: 1rem;
}
.vehicle-selection .vehicle-item .continue-btn {
  grid-column: 1/2;
  grid-row: 1/2;
  align-self: end;
  text-align: center;
  padding: 10px 4cqw;
  border-radius: 30px;
  color: black;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease;
}
.vehicle-selection .vehicle-item .continue-btn:hover {
  transform: scale(1.05);
}
.vehicle-selection .vehicle-item:nth-child(1) .continue-btn {
  background: #FF7EBE;
}
.vehicle-selection .vehicle-item:nth-child(1) .continue-btn strong {
  border-bottom-color: #f753ed;
}
.vehicle-selection .vehicle-item:nth-child(2) .continue-btn {
  background: #F8D960;
}
.vehicle-selection .vehicle-item:nth-child(2) .continue-btn strong {
  border-bottom-color: #ec6972;
}
.vehicle-selection .vehicle-item:nth-child(3) .continue-btn {
  background: #F8A07A;
}
.vehicle-selection .vehicle-item:nth-child(3) .continue-btn strong {
  border-bottom-color: #ec6972;
}
.vehicle-selection .vehicle-item:nth-child(4) .continue-btn {
  background: #F36E9B;
}
.vehicle-selection .vehicle-item:nth-child(4) .continue-btn strong {
  border-bottom-color: #ec6972;
}

.car-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.car-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
  color: white;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* Aligns overlay to bottom */
}
.car-card .car-name {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}
.car-card .car-name span {
  border-bottom: 1px solid white;
  padding-bottom: 2px;
}
.car-card .card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  padding: 20px;
}
.car-card .card-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  align-items: end;
  gap: 10px;
}
.car-card .car-features {
  grid-column: 1/2;
  grid-row: 2/3;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.car-card .car-price {
  grid-column: 2/3;
  grid-row: 1/3;
  text-align: right;
  line-height: 0.8;
}
.car-card .car-price .price-currency {
  font-size: 18px;
  font-weight: 500;
}
.car-card .car-price .price-amount {
  font-size: 72px;
  font-weight: 900;
  display: block;
}
.car-card .car-price .price-period {
  font-size: 18px;
  font-weight: 500;
}

/* General Features Section */
.general-features {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
}

.features-label {
  position: relative;
  padding-bottom: 25px;
}
.features-label p {
  margin: 0;
  font-size: 14px;
  color: #8693A3;
}
.features-label .arrow-curve {
  position: absolute;
  left: 20px;
  bottom: -10px;
}

.feature-icons {
  display: flex;
  gap: 10px;
}
.feature-icons .feature-icon {
  background-color: #F5F6F8;
  border-radius: 12px;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature-icons .feature-icon img {
  max-width: 50%;
  height: auto;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (min-width: 480px) {
  .page-title {
    font-size: 36px;
    text-align: center;
  }
  .car-grid {
    grid-template-columns: 1fr;
  }
  .general-features {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .features-label {
    padding-bottom: 0;
  }
  .features-label .arrow-curve {
    display: none;
  }
  .feature-icons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .feature-icons .feature-icon {
    width: 70px;
    height: 70px;
  }
}
.qa-page {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
}

.support-intro {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 15px;
  margin-bottom: 80px;
}
.support-intro .speech-bubble-qa {
  position: relative;
  background-color: #2EEF9E;
  color: white;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  padding: 20px;
  box-sizing: border-box;
}
.support-intro .speech-bubble-qa a {
  color: white;
  text-decoration: underline;
}
.support-intro .speech-bubble-qa::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 20px;
  height: 20px;
  background-color: #2EEF9E;
}
.support-intro .support-person-qa {
  text-align: center;
}
.support-intro .support-person-qa img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.support-intro .support-person-qa p {
  margin: 4px 0;
  font-size: 14px;
}
.support-intro .support-person-qa .support-name {
  color: #8693A3;
}

/* FAQ Section Styling */
.faq-section {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 20px;
  margin-bottom: 50px;
  align-items: flex-start;
}
.faq-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #8693A3;
  margin: 0;
  text-align: right;
}
.faq-section .question-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.faq-section .question-list li {
  color: #8693A3;
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
  font-size: 16px;
  cursor: pointer;
}
.faq-section .question-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  /* Adjust vertical alignment */
  width: 10px;
  height: 10px;
  background-color: #2EEF9E;
  border-radius: 50%;
}
.faq-section .question-list li:hover {
  color: #2EEF9E;
}

/* About Us Footer */
.about-us-footer {
  border-top: 1px solid #EAECEF;
  margin-top: 60px;
  padding-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 14px;
}
.about-us-footer strong {
  color: #343A40;
}
.about-us-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.about-us-footer li {
  color: #8693A3;
  padding-left: 15px;
  position: relative;
  cursor: pointer;
}
.about-us-footer li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background-color: #2EEF9E;
  border-radius: 50%;
}
.about-us-footer li:hover {
  color: #2EEF9E;
}

/* --- MOBILE RESPONSIVENESS for Q&A Page --- */
@media (min-width: 480px) {
  .support-intro {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
  }
  .support-intro .speech-bubble-qa::after {
    right: 50%;
    top: -8px;
    transform: translateX(50%) rotate(45deg);
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .faq-section h2 {
    text-align: left;
  }
  .about-us-footer {
    flex-direction: column;
    text-align: center;
  }
  .about-us-footer ul {
    flex-direction: column;
  }
}

/*# sourceMappingURL=rentals.css.map */
