@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Cairo", sans-serif;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  background-color: #fff;
  scroll-behavior: smooth;
}

.disclaimer {
  display: none !important;
}

a {
  text-decoration: none !important;
}

ul {
  list-style: none;
}
/* End General Styling */

:root {
  --primary-color: #fff;
  --secondary-color: #00139b;
  --tertiary-color: #ed0012;
}

.upper-nav {
  height: 50px;
  border-top: 1px solid #00139b4f;
  border-bottom: 1px solid #00139b4f;
}

.upper-nav .container {
  border-left: 1px solid #00139b4f;
  border-right: 1px solid #00139b4f;
}

.upper-nav .upper-nav-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 45px;
}

.upper-nav .contact-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
}

.upper-nav .contact-info a {
  font-size: 15px;
  color: var(--secondary-color);
}

.upper-nav .contact-info a i {
  color: var(--tertiary-color);
}

.upper-nav .social-media {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
}

.upper-nav .social-media a {
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--tertiary-color);
  color: var(--tertiary-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.upper-nav .social-media a:hover {
  background-color: var(--tertiary-color);
  color: var(--primary-color);
}

nav {
  border-bottom: 1px solid #00139b4f;
  position: relative;
}

nav .container {
  border-left: 1px solid #00139b4f;
  border-right: 1px solid #00139b4f;
}

nav .nav-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 87px;
}

nav .logo h1 {
  font-size: 36px;
  font-weight: bolder;
  color: var(--secondary-color);
  margin: 0;
}

nav .logo h1 span {
  color: var(--tertiary-color);
}

nav .nav-elements {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

nav .nav-elements ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 23px;
  padding: 0;
  margin: 0;
}

nav .nav-elements a {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  transition: color 0.3s ease;
}

nav .nav-elements ul li a:hover {
  color: var(--tertiary-color);
}

nav .nav-elements > a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: var(--tertiary-color);
  height: 55px;
  width: 154px;
  border-radius: 5px;
  color: #fff;
  transition: all 0.3s ease;
}

nav .nav-elements > a:hover {
  background-color: var(--secondary-color);
}

/* Mobile nav styles */
.mobile-menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--secondary-color);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--primary-color);
  z-index: 1000;
  padding: 20px;
}

.mobile-nav .close-nav {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: var(--tertiary-color);
}

.mobile-nav ul {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mobile-nav ul li a {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
}

.mobile-nav .mobile-cta {
  margin-top: 30px;
  text-align: center;
}

.mobile-nav .mobile-cta a {
  display: inline-block;
  background-color: var(--tertiary-color);
  padding: 12px 25px;
  border-radius: 5px;
  color: #fff;
  font-weight: 700;
}

.landing {
  position: relative;
}

.landing .container {
}

.landing .landing-content {
  margin-top: 100px;
  margin-bottom: 100px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.landing .back-text {
  font-size: 19rem;
  font-weight: bold;
  -webkit-text-stroke: 1px #00139b1a;
  color: transparent;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.landing h1 {
  font-size: 70px;
  font-weight: bold;
  color: #000;
  width: 60%;
}

.landing .info {
  width: 40%;
}

.landing .info p {
  font-size: 18px;
  font-weight: 500;
}

.landing .info div {
  margin-top: 43px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.landing .info a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 45px;
  border-radius: 5px;
  background-color: var(--secondary-color);
  padding-left: 25px;
  padding-right: 26px;
  color: #fff;
  min-width: 109px;
  transition: all 0.3s ease;
}

.landing .info a:hover {
  background-color: #000f7a;
}

.landing .info a.lined {
  background-color: transparent;
  color: var(--tertiary-color);
  border: 1px solid var(--tertiary-color);
}

.landing .info a.lined:hover {
  background-color: var(--tertiary-color);
  color: #fff;
}

.landing .landing-image img {
  height: 676px;
  object-fit: cover;
  width: 100%;
  object-position: top;
}

.why-us {
  margin-top: 60px;
  margin-bottom: 60px;
}

.why-us .info {
  width: 100%;
  min-height: 450px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 16px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.why-us .info:hover {
  transform: translateY(-10px);
}

.why-us .back-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.why-us .back-overlay div {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #000000a8;
  z-index: 1;
  border-radius: 5px;
}

.why-us .back-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  position: absolute;
}

.why-us i {
  font-size: 45px;
  position: relative;
  z-index: 2;
  color: var(--tertiary-color);
}

.why-us h1 {
  font-size: 22px;
  position: relative;
  z-index: 2;
  color: #fff;
}

.why-us p {
  font-size: 16px;
  position: relative;
  color: #fff;
  z-index: 2;
}

.why-us a {
  z-index: 2;
  position: relative;
  color: var(--tertiary-color);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.why-us a:hover {
  color: #fff;
}

.why-us a i {
  font-size: 16px;
}

.about-us {
  margin-top: 100px;
  margin-bottom: 100px;
}

.about-us .images {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 13px;
}

.about-us .left-row {
  width: 50%;
}

.about-us .left-row .text {
  width: 97%;
  background-color: #00139b17;
  padding: 15px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  margin: 0px;
  margin-bottom: 10px;
  height: 178px;
}

.about-us .left-row .text h2 {
  font-size: 23px;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 0;
}

.about-us .left-row .text h3 {
  margin: 0;
  font-size: 25px;
  font-weight: 600;
  color: var(--tertiary-color);
}

.about-us .left-row .circle-images {
}

.about-us .left-row .circle-images img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.about-us .left-row .circle-images img:nth-child(2) {
  margin-left: -15px;
}
.about-us .left-row .circle-images img:nth-child(3) {
  margin-left: -15px;
}

.about-us .left-row img {
  width: 100%;
  border-radius: 17px;
  height: 318px;
  object-fit: cover;
}

.about-us .right-row {
  width: 50%;
}

.about-us .right-row img {
  width: 100%;
  height: 505px;
  object-fit: cover;
  border-radius: 15px;
}

.about-us .text h4 {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0px;
  color: #000;
}

.about-us .text h4 span {
  color: var(--tertiary-color);
}

.about-us .text h1 {
  font-size: 40px;
}

.about-us .text p {
  font-size: 18px;
  font-weight: 500;
}

.about-us .info {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 24px;
  gap: 18px;
}

.about-us .info .left {
  width: 48%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #00139b17;
  border-radius: 7px;
  height: 109px;
}

.about-us .info .left h1 {
  font-size: 74px;
  font-weight: 800;
  color: #00139b;
  font-weight: bold;
  -webkit-text-stroke: 1px #00139b;
  color: transparent;
}

.about-us .info .left h4 {
  width: 40%;
  color: #00139b;
}

.about-us .info .right ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  gap: 5px;
  margin-bottom: 6px;
}

.about-us .info .right ul li i {
  color: #00139b;
}

.about-us .info .right ul li p {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin: 0;
}

.appointment .appointment-text {
  background-color: #e8eaf6;
  padding: 15px;
  border-radius: 16px;
}

.appointment .appointment-text h4 {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0px;
  color: #000;
}

.appointment .appointment-text h4 span {
  color: var(--tertiary-color);
}

.appointment .appointment-text h1 {
  font-size: 25px;
}

.appointment .appointment-text p {
  font-size: 18px;
  font-weight: 500;
}

.appointment .video {
  width: 100%;
  position: relative;
  margin-bottom: 8px;
}

.appointment .video .overlay {
  width: 100%;
  height: 99%;
  position: absolute;
  background-color: #000000a8;
  z-index: 1;
  border-radius: 14px;
}

.appointment .video video {
  height: 386px;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.appointment .cars-images {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 23px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 5px;
  background-color: #e8eaf6;
  margin-top: 23px;
}

.appointment .cars-images img {
  width: 19%;
  height: 110px;
  object-fit: cover;
  border-radius: 11px;
}

.appointment .appointment-form {
  background-color: #e8eaf6;
  padding: 15px;
  border-radius: 16px;
}

.appointment .appointment-form h2 {
  font-size: 25px;
}

.appointment .appointment-form ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  gap: 5px;
  margin-bottom: 18px;
  margin-top: 23px;
}

.appointment .appointment-form a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: var(--tertiary-color);
  height: 45px;
  width: 100%;
  border-radius: 5px;
  color: #fff;
}

.show-case {
  position: relative;
}

.show-case .text-behinde {
  font-size: 19rem;
  font-weight: bold;
  -webkit-text-stroke: 1px #00139b1a;
  color: transparent;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
}

.show-case .section-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
  margin-top: 80px;
}

.show-case .section-header .left h4 {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0px;
  color: #000;
}

.show-case .section-header .left h4 span {
  color: var(--tertiary-color);
}

.show-case .section-header .left h1 {
  font-size: 35px;
}

.show-case .section-header .right {
  width: 50%;
}

.show-case .section-header .right p {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.show-case .video {
  width: 100%;
  height: 500px;
  position: relative;
}

.show-case .video .overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #0000006e;
  border-radius: 15px;
}

.show-case .video .text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 18px;
}

.show-case .video .text span {
  font-size: 16px;
  color: var(--tertiary-color);
}

.show-case .video .text h2 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
}

.show-case .video .text p {
  font-size: 16px;
  color: #fff;
}

.show-case .video .text a {
  color: var(--primary-color);
  font-size: 16px;
}

.show-case .video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  z-index: -1;
}

.colors {
  padding: 80px 0;
  overflow: hidden;
}

.colors .section-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 50px;
}

.colors .section-header .left h4 {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  gap: 8px;
  text-transform: uppercase;
  color: #000;
}

.colors .section-header .left h4 span {
  color: var(--tertiary-color);
}

.colors .section-header .left h1 {
  font-size: 35px;
  margin-top: 10px;
}

.colors .section-header .right {
  width: 50%;
}

.colors .section-header .right .images-content {
  margin-bottom: 20px;
}

.colors .section-header .right .images-content .images {
  display: flex;
  position: relative;
  margin-bottom: 10px;
}

.colors .section-header .right .images-content .images img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: -40px;
}

.colors .section-header .right .images-content .images a {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--tertiary-color);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.colors .section-header .right .images-content .images a:hover {
  background-color: var(--secondary-color);
}

.colors .section-header .right .images-content .text p {
  font-size: 14px;
  color: var(--tertiary-color);
  font-weight: 600;
}

.colors .section-header .right p {
  font-size: 16px;
  line-height: 1.6;
}

.colors .all-colors-content {
  margin-bottom: 40px;
}

.colors .all-colors-content .color-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  padding: 0;
  margin-bottom: 20px;
}

.colors .all-colors-content .color-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.colors .all-colors-content .color-list li .color-circle {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.colors .all-colors-content #moreColors {
  display: none;
      flex-wrap: wrap;
      flex-direction: row;
      align-items: center;
      justify-content: unset;
}

.colors .all-colors-content #moreColors.show {
  display: flex !important;
}

.colors .all-colors-content #toggleColors {
  background-color: var(--tertiary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.colors .all-colors-content #toggleColors:hover {
  background-color: var(--secondary-color);
}

.colors .big-car-image {
  text-align: center;
  margin-top: 40px;
}

.colors .big-car-image img {
  max-width: 100%;
  height: auto;
}

.ad-section {
  background-image: url('../images/s1.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  position: relative;
  text-align: center;
  margin: 80px 0;
}

.ad-section .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 19, 155, 0.8);
}

.ad-section .container {
  position: relative;
  z-index: 2;
}

.ad-section .ad-content {
  max-width: 800px;
  margin: 0 auto;
  color: white;
}

.ad-section .ad-content h4 {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
}

.ad-section .ad-content h4 span {
  color: var(--tertiary-color);
}

.ad-section .ad-content h1 {
  font-size: 42px;
  margin: 15px 0;
}

.ad-section .ad-content p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.ad-section .ad-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--tertiary-color);
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.ad-section .ad-content a:hover {
  background-color: white;
  color: var(--tertiary-color);
}

.faqs {
  padding: 80px 0;
}

.faqs .images {
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.faqs .images video {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 10px;
}

.faqs .faqs-content {
  padding-left: 20px;
}

.faqs .faqs-content h4 {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  gap: 8px;
  text-transform: uppercase;
  color: #000;
}

.faqs .faqs-content h4 span {
  color: var(--tertiary-color);
}

.faqs .faqs-content h1 {
  font-size: 35px;
  margin-bottom: 30px;
}

.faqs .questions .question {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.faqs .questions .question .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faqs .questions .question .header h1 {
  font-size: 18px;
  margin-bottom: 0;
  color: var(--secondary-color);
  font-weight: 600;
  width: 90%;
}

.faqs .questions .question .header i {
  color: var(--tertiary-color);
  transition: transform 0.3s ease;
}

.faqs .questions .question.active .header i {
  transform: rotate(45deg);
}

.faqs .questions .question .description {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faqs .questions .question.active .description {
  max-height: 300px;
  margin-top: 15px;
}

.faqs .questions .question .description p {
  color: #555;
  line-height: 1.6;
}

.numbers {
  background-color: #f8f9fa;
  padding: 60px 0;
  margin: 40px 0;
}

.numbers .numbers-content .content {
  text-align: center;
  padding: 20px;
}

.numbers .numbers-content .content h2 {
  font-size: 48px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.numbers .numbers-content .content h3 {
  font-size: 18px;
  color: var(--tertiary-color);
  font-weight: 600;
}

/* Footer Styles */
footer {
  background-color: #000c52;
  color: white;
  padding-top: 60px;
}

footer .footer-top {
  padding-bottom: 40px;
}

footer .footer-logo h1 {
  font-size: 36px;
  font-weight: bolder;
  color: white;
  margin-bottom: 20px;
}

footer .footer-logo h1 span {
  color: var(--tertiary-color);
}

footer .footer-logo p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

footer .footer-social {
  display: flex;
  gap: 15px;
}

footer .footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

footer .footer-social a:hover {
  background-color: var(--tertiary-color);
}

footer .footer-heading {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  color: white;
  position: relative;
}

footer .footer-heading:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 2px;
  background-color: var(--tertiary-color);
}

footer .footer-links ul {
  padding: 0;
}

footer .footer-links ul li {
  margin-bottom: 12px;
}

footer .footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

footer .footer-links ul li a:hover {
  color: var(--tertiary-color);
  padding-left: 5px;
}

footer .footer-contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

footer .footer-contact-info p i {
  color: var(--tertiary-color);
}

footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
}

footer .footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

footer .footer-bottom p a {
  color: var(--tertiary-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .landing h1 {
    font-size: 55px;
  }
  
  .landing .back-text {
    font-size: 15rem;
  }
}

@media (max-width: 992px) {
  .upper-nav .contact-info {
    display: none;
  }
  
  .upper-nav .upper-nav-content {
    justify-content: center;
  }
  
  nav .nav-elements ul {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  nav .nav-elements > a {
    display: none;
  }
  
  .landing .landing-content {
    flex-direction: column;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  
  .landing h1 {
    width: 100%;
    font-size: 45px;
  }
  
  .landing .info {
    width: 100%;
    margin-top: 30px;
  }
  
  .landing .info div {
    justify-content: center;
  }
  
  .landing .back-text {
    font-size: 10rem;
  }
  
  .landing .landing-image img {
    height: 400px;
  }
  
  .about-us .images {
    flex-direction: column;
  }
  
  .about-us .left-row, 
  .about-us .right-row {
    width: 100%;
  }
  
  .about-us .info {
    flex-direction: column;
  }
  
  .about-us .info .left {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .colors .section-header {
    flex-direction: column;
  }
  
  .colors .section-header .right {
    width: 100%;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .landing h1 {
    font-size: 35px;
  }
  
  .landing .back-text {
    font-size: 6rem;
  }
  
  .landing .landing-image img {
    height: 300px;
  }
  
  .about-us .text h1 {
    font-size: 30px;
  }
  
  .about-us .left-row .text {
    height: auto;
    padding: 20px;
  }
  
  .show-case .section-header {
    flex-direction: column;
  }
  
  .show-case .section-header .right {
    width: 100%;
    margin-top: 20px;
  }
  
  .show-case .video {
    margin-bottom: 20px;
  }
  
  .show-case .text-behinde {
    font-size: 5rem;
  }
  
  .ad-section .ad-content h1 {
    font-size: 30px;
  }
  
  .faqs .faqs-content {
    padding-left: 0;
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .upper-nav {
    display: none;
  }
  
  nav .logo h1 {
    font-size: 28px;
  }
  
  .landing h1 {
    font-size: 28px;
  }
  
  .landing .back-text {
    font-size: 4rem;
  }
  
  .landing .info div {
    flex-direction: column;
  }
  
  .landing .info a {
    width: 100%;
  }
  
  .why-us .info {
    min-height: 350px;
  }
  
  .appointment .cars-images {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .appointment .cars-images img {
    width: 48%;
    margin-bottom: 10px;
  }
  
  .colors .all-colors-content .color-list {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  
  .ad-section .ad-content h1 {
    font-size: 24px;
  }
  
  .ad-section .ad-content p {
    font-size: 16px;
  }
  
  .numbers .numbers-content .content {
    margin-bottom: 20px;
  }
}

  .color-list li:hover {
            background-color: #f0f0f0;
            border-radius: 5px;
        }

        .color-circle {
            display: inline-block;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            margin-right: 10px;
            border: 1px solid #ccc;
        }

        #moreColors {
            display: none;
        }

        #moreColors.show {
            display: grid;
        }

        #toggleColors {
            margin: 20px 0;
            padding: 10px 20px;
            background-color: #333;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        #toggleColors:hover {
            background-color: #555;
        }

        .big-car-image {
            text-align: center;
            margin-top: 40px;
        }

        .car-container {
            position: relative;
            display: inline-block;
        }

        #carImage {
            max-width: 100%;
            height: auto;
            filter: none;
            transition: filter 0.3s ease;
        }
         #moreColors {
            display: none;
        }

        #moreColors.show {
            display: grid;
        }

        #toggleColors {
            margin: 20px 0;
            padding: 10px 20px;
            background-color: #333;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        #toggleColors:hover {
            background-color: #555;
        }

        .big-car-image {
            text-align: center;
            margin-top: 40px;
        }

        .car-container {
            position: relative;
            display: inline-block;
        }

        #carImage {
            max-width: 100%;
            height: auto;
            transition: opacity 0.3s ease;
        }

        #carImage.loading {
            opacity: 0.5;
        }