:root {
  /*--primary-blue: #007bff;*/ /* Bright blue for buttons/highlights */
   --primary-blue: #D90014; /* Bright blue for buttons/highlights updated red*/
  --dark-blue: #0D2740; /* Deep navy for backgrounds */
  --text-white: #ffffff;
  --text-gray: #b0b0b0;
  --font-main: "Plus Jakarta Sans", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--dark-blue);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

address {
  font-style: normal;
}

ul {
  list-style: none;
}

/* Max width wrapper for content */
.page-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  background-color: var(--dark-blue);
}

.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 64px;
}

.highlight {
  color: var(--primary-blue);
}

.text-white {
  color: var(--text-white);
}

.mobile-br {
  display: none;
}

.desktop-hide-br {
  display: none;
}

/* Scroll-reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Active nav link */
.nav-links a.active-link {
  color: var(--primary-blue) !important;
  opacity: 1 !important;
}

.btn-arrow-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  margin-left: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: #B0000F;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(217, 0, 20, 0.4);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1920px;
  z-index: 100;
  height: 72px;
  padding: 0;
  background-color: var(--dark-blue);
  border-bottom: 1px solid #ffffff14;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(13, 39, 64, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  padding: 0 80px;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #ffffff;
  padding-right: 40px;
  border-right: 1px solid #ffffff14;
  height: 100%;
}

.logo-icon {
  width: auto;
  height: 32px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 60px;
  padding-right: 0;
}

.nav-links a {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: none; /* Resetting uppercase if it was inherited or set previously */
  color: #ffffffa3;
  transition: color 0.3s, opacity 0.3s;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-blue);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active-link::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary-blue);
  opacity: 1;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-white);
  position: relative;
  transition: background-color 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--text-white);
  left: 0;
  transition: transform 0.3s, top 0.3s;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

/* Hamburger to X animation */
.menu-toggle.active .hamburger {
  background-color: transparent;
}

.menu-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Hero Section */
.hero {
  margin-top: 72px;
  height: calc(100vh - 72px);
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay for better text readability */
.hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(11, 28, 46, 0.9) 0%,
    rgba(11, 28, 46, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  padding: 0 20px;
}

.hero-content .subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-content h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 80px;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 40px;
  color: var(--primary-blue);
  text-align: center;
}

.hero-content .btn {
  width: auto; /* Changed from fixed width */
  min-width: 243px; /* Optional: keep minimum width or remove if strictly content size */
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-left: 32px;
  padding-right: 32px;
  border-radius: 32px;
  background-color: var(--primary-blue); /* Changed to primary color */
  color: #ffffff; /* Changed to white for contrast */
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content .btn:hover {
  background-color: #B0000F;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(217, 0, 20, 0.4);
}

/* About Section */
.about {
  padding: 220px 0;
  background-color: #fff;
  color: var(--dark-blue);
  display: flex;
  align-items: center;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1440px; /* Override standard container width */
  padding: 0 64px;
  margin: 0 auto;
  width: 100%;
}

.about-text {
  flex: 1;
}

.about-text p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0;
  color: inherit;
}

.about-text h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0;
  margin-bottom: 30px;
  white-space: nowrap;
}

.about-subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
  margin-top: 30px;
  color: #000;
  white-space: nowrap;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  object-fit: contain;
}

/* Why Us Section */
.why-us {
  padding: 120px 0;
  text-align: center;
  background-color: var(--dark-blue);
}

.why-us h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 40px;
}

.why-us .container {
  padding: 0;
  max-width: 1920px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0; /* Remove gap to make borders touch */
  margin-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.feature-card {
  text-align: left;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  background-color: rgba(255, 255, 255, 0.03);
}

.feature-card:last-child {
  border-right: none;
}

.step-number {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0;
  opacity: 0.5;
  margin-bottom: 20px;
}

.feature-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 12px;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.feature-card:hover .feature-img img {
  transform: scale(1.1);
}

.feature-card p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0;
  text-align: center;
  opacity: 0.9;
}

.cta-banner {
  background-color: transparent;
  padding: 40px 20px 0;
  text-align: center;
  width: 100%;
}

.cta-banner .btn {
  height: 64px;
  padding: 0 32px;
  gap: 10px;
  border-radius: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cta-subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0;
  text-align: center;
  opacity: 0.6;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .cta-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 40px;
}

/* Service Sections */
/* Service Sections */
.service-section {
  position: relative;
  height: 500px;
  display: flex;
  background-color: rgba(13, 39, 64, 1.0); /* Dark blue with 72% opacity */
  align-items: center;
  overflow: hidden;
}

.main-service {
  height: 800px;
  display: block;
}

.service-bg {
  opacity: 0.40;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.service-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(11, 28, 46, 0.2) 0%,
    rgba(11, 28, 46, 0.6) 100%
  );
}

.glass-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 0;
}

.service-header {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  text-align: left;
  margin: 0;
}

.service-header h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 80px;
  letter-spacing: 0;
  text-shadow: none;
}

.glass-bottom-wrapper {
  width: 100%;
  padding: 40px 0 60px 0;
  position: relative;
  overflow: visible;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Blur effect overlay */
.glass-blur-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.glass-content {
  position: relative;
  display: flex;
  gap: 60px;
  background: none;
  backdrop-filter: none;
  border: none;
  align-items: flex-start;
  z-index: 1;
}

/* Vertical divider spanning full height of glass-bottom-wrapper */
.glass-content::before {
  content: "";
  position: absolute;
  left: calc(50% - 30px);
  top: -40px;
  bottom: -60px;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
}

.glass-left {
  flex: 1;
  padding-right: 60px;
  position: relative;
  max-width: 832px;
}

.glass-left p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0;
  opacity: 0.95;
  margin: 0;
}

.glass-right {
  flex: 1;
}

.glass-right ul li {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 36px;
  letter-spacing: 0;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  opacity: 0.95;
}

.glass-right ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px; /* Adjusted for alignment */
  width: 16px;
  height: 16px;
  background-image: url("images/Icons/bullet.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Other service sections styling */
.service-section:not(.main-service) .glass-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  /* Mild blur for entire section */
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* Add gradient blur effect to other service sections */
.service-section:not(.main-service) .glass-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 0;
}

.service-section:not(.main-service) .glass-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  /* Smoother gradient mask */
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.2) 15%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.8) 70%,
    rgba(0, 0, 0, 1) 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.2) 15%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.8) 70%,
    rgba(0, 0, 0, 1) 100%
  );
  z-index: 0;
}

.service-section:not(.main-service) .service-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-section.reverse .service-content {
  align-items: flex-end;
  text-align: right;
}

.service-section.reverse .service-bg::after {
  background: linear-gradient(
    270deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.service-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-details {
  max-width: 500px;
}

.service-details p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.service-details ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.service-details ul li::before {
  content: "•";
  color: var(--primary-blue);
  position: absolute;
  left: 0;
}

/* Fleet Section */
.fleet {
  padding: 80px 0;
  text-align: center;
  background-color: var(--dark-blue);
}

.fleet h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 20px;
}

.fleet-subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  opacity: 0.8;
}

.fleet .container {
  padding: 0;
  max-width: 1920px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.fleet-card {
  text-align: left;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.fleet-card:hover {
  transform: translateY(-4px);
  background-color: rgba(255, 255, 255, 0.03);
}

.fleet-card:nth-child(3),
.fleet-card:nth-child(6) {
  border-right: none;
}

.fleet-card:nth-child(4),
.fleet-card:nth-child(5),
.fleet-card:nth-child(6) {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fleet-heading {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
  margin-bottom: 20px;
  color: var(--text-white);
  text-align: center;
}

.fleet-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 12px;
}

.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.fleet-card:hover .fleet-img img {
  transform: scale(1.1);
}

.fleet-card p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0;
  text-align: center;
  color: #ffffffa3;
  opacity: 1;
}

/* Ready to Ride */
.ready-to-ride {
  padding: 200px 0;
  text-align: center;
  background-color: #fff;
  color: var(--dark-blue);
}

.ready-to-ride h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 30px;
}

.ready-to-ride .btn {
  height: 64px;
  padding: 0 32px;
  gap: 10px;
  border-radius: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ready-to-ride .highlight-italic {
  color: var(--primary-blue);
}

.ready-to-ride p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0.7;
}

/* Footer */
.footer {
  background-color: var(--dark-blue);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  /* max-width: 1343px; */
  margin: 0 auto;
}

.footer-left {
  flex: 1;
  padding: 60px 50px 60px 64px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.footer-logo-mobile {
  display: none;
}

.footer-logo img {
  /* width: 50px; */
  height: 50px;
  object-fit: contain;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-subtitle {
  font-size: 0.7rem;
  letter-spacing: 3px;
  opacity: 0.8;
}

.footer-logo-title {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-left h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: 0;
  margin-bottom: 30px;
}

.footer-left .btn {
  margin-top: 40px;
  height: 64px;
  padding: 0 32px;
  gap: 10px;
  border-radius: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-left .highlight-italic {
  color: var(--primary-blue);
  display: block;
}

.footer-right {
  /* max-width: 600px; */
  background-color: transparent;
  padding: 60px 64px 60px 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-right ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-right ul li {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-right a {
  color: var(--text-white);
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: var(--primary-blue);
}

.footer-right ul li span:not(.contact-icon) {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
}

.icon-wrapper {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background-color: #0f3460; /* Darker blue based on image */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.icon-wrapper img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  opacity: 0.6;
}

.footer-bottom strong {
  font-weight: 600;
}

/* ============================================
   RESPONSIVE BREAKPOINTS (Mobile-First Approach)
   - Mobile: 320px - 480px
   - Tablet: 481px - 1024px  
   - Desktop: 1025px+
   ============================================ */

/* Large Tablet & Small Desktop (1024px and below) */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .nav-container {
    padding: 0 30px;
  }

  /* Navbar adjustments */
  .logo {
    padding: 20px 30px;
  }

  .nav-links {
    padding-right: 30px;
    gap: 30px;
  }

  /* Hero */
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-content {
    padding: 0 30px;
  }

  /* About */
  .about {
    padding: 150px 0;
  }

  .about-text h2 {
    font-size: 2.5rem;
    white-space: normal;
  }

  .about-subtitle {
    white-space: normal;
  }

  .about-image img {
    max-width: 250px;
  }

  /* Why Us */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card:nth-child(2),
  .feature-card:nth-child(4) {
    border-right: none;
  }

  .feature-card:nth-child(3),
  .feature-card:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .cta-title {
    font-size: 2rem;
  }

  /* Services */
  .service-section {
    height: auto;
  }

  .main-service {
    height: auto;
    min-height: 600px;
  }

  .glass-container {
    position: relative;
    height: auto;
  }

  .service-header h2 {
    font-size: 3rem;
  }

  /* Fleet */
  .fleet h2 {
    font-size: 2.5rem;
  }

  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-card:nth-child(2),
  .fleet-card:nth-child(4),
  .fleet-card:nth-child(6) {
    border-right: none;
  }

  .fleet-card:nth-child(3),
  .fleet-card:nth-child(5) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .fleet-card:nth-child(3),
  .fleet-card:nth-child(4),
  .fleet-card:nth-child(5),
  .fleet-card:nth-child(6) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Footer */
  .footer-left {
    padding: 50px 30px;
  }

  .footer-left h3 {
    font-size: 1.8rem;
    line-height: 1.5;
  }

  .footer-right {
    width: auto;
    min-width: 420px;
    padding: 50px 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
  }

  .footer-right ul {
    align-items: flex-start;
    text-align: left;
  }

  .footer-right ul li {
    justify-content: flex-start;
  }
}

/* iPad Air & Similar Tablets (880px and below) - Updated */
@media screen and (max-width: 880px) {
  .cta-title {
    line-height: 1.3;
  }

  /* Hero - Stack vertically */
  .hero {
    flex-direction: column;
    height: calc(var(--vh, 1vh) * 100 - 72px);
    min-height: 0;
  }

  .mobile-br {
    display: block;
  }

  .desktop-hide-br {
    display: block;
  }

  .hero-content .subtitle {
    line-height: 1.4;
  }

  .hero-image {
    flex: 1;
    max-width: 100%;
    height: auto;
    min-height: 0;
  }

  .hero-content {
    flex: 1;
    max-width: 100%;
    padding: 30px 40px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.5;
  }

  /* About - Stack vertically */
  .about {
    padding: 100px 0;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .about-text {
    display: contents;
  }

  .about-text h2 {
    order: 1;
    font-size: 2rem;
    margin-bottom: 10px;
    white-space: normal;
  }

  .about-text h2 span {
    display: block;
  }

  .about-image {
    order: 2;
    margin-bottom: 20px;
    width: 100%;
    max-width: 350px;
  }

  .about-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .about-text p {
    order: 3;
    line-height: 2;
    margin-bottom: 10px;
    padding: 0 10px;
  }

  .about-subtitle {
    order: 4;
    font-size: 1.4rem;
    font-weight: 700;
    white-space: normal;
    margin-top: 10px;
  }

  /* Why Us - Break heading */
  .why-us h2 span {
    display: block;
    margin-bottom: 10px;
  }

  /* Footer */
  .footer-main {
    flex-direction: column;
  }

  .footer-left {
    flex: none;
    width: 100%;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-logo img {
    width: 120px;
    height: auto;
  }

  .footer-logo-desktop {
    display: none;
  }

  .footer-logo-mobile {
    display: block;
  }

  .footer-left h3 {
    text-align: center;
  }

  .footer-right {
    width: 100%;
    min-width: 0;
    padding: 50px 40px;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-right ul {
    align-items: flex-start;
    text-align: left;
  }

  .footer-right ul li {
    justify-content: flex-start;
  }
}

/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  /* Apply mobile font configurations to tablet/iPad portrait mode */
  /* Hero */
  .hero-content h1 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: 58px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
  }

  .hero-content .subtitle {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
  }

  /* About */
  .about-text h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
  }

  .about-text p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
  }

  .about-subtitle {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
    margin-top: 0;
  }

  /* Why Us */
  .why-us h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .feature-card p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
  }

  .cta-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
  }

  .cta-subtitle {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
  }

  /* Services */
  .service-header h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 0;
  }

  .glass-left p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
  }

  .glass-right ul li {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    margin-bottom: 10px;
  }

  /* Fleet */
  .fleet h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
  }

  .fleet-subtitle {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .fleet-heading {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    margin-bottom: 15px;
  }

  .fleet-card p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
  }

  /* Ready to Ride */
  .ready-to-ride {
    padding: 160px 0;
  }

  .ready-to-ride h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 20px;
  }

  .ready-to-ride p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  /* Footer */
  .footer-left h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
  }

  .footer-right ul li span:not(.contact-icon) {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
  }

  .nav-container {
    padding: 0 20px;
    width: 100%;
  }

  /* Mobile Navigation */
  .logo {
    border-right: none;
    padding: 0; /* Reset all padding */
    display: flex;
    align-items: center;
    margin-right: auto; /* Push everything else to right */
  }


  .logo span {
    font-size: 22px; /* Increased from 20px */
  }

  .menu-toggle {
    display: block;
    margin-right: 0;
    padding: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .nav-container {
    position: relative;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--dark-blue);
    flex-direction: column;
    padding: 0 0 40px 0; /* Added padding bottom */
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    position: relative;
  }

  .nav-links li::after {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
  }

  .nav-links a {
    display: block;
    padding: 20px;
    text-align: center;
    font-size: 1rem;
  }

  .nav-links a::after {
    display: none;
  }

  /* Hero */
  .hero {
    flex-direction: column;
    height: calc(var(--vh, 1vh) * 100 - 72px);
    min-height: 0;
  }

  .hero-image {
    flex: none;
    max-width: 100%;
    height: 400px;
  }

  .hero-content {
    flex: none;
    max-width: 100%;
    padding: 60px 20px; /* Updated to 20px to align with header */
    text-align: center;
    align-items: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content .subtitle {
    font-size: 0.9rem;
  }

  /* About */
  .about {
    padding: 100px 0;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .about-text h2 {
    font-size: 2rem;
    white-space: normal;
  }

  .about-subtitle {
    font-size: 1.2rem;
    white-space: normal;
  }

  .about-image img {
    max-width: 250px;
  }

  /* Why Us */
  .why-us {
    padding: 60px 0;
  }

  .why-us h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card {
    padding: 25px;
  }

  .cta-banner {
    padding: 40px 20px;
  }

  .cta-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .cta-subtitle {
    font-size: 0.95rem;
  }

  /* Services */
  .main-service {
    height: auto;
    min-height: 650px;
  }

  .service-section {
    height: auto;
  }

  .glass-container {
    position: relative;
    height: auto;
  }

  .service-header {
    padding-top: 80px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 40px;
  }

  .service-header h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    padding-bottom: 15px;
  }

  .glass-bottom-wrapper {
    padding: 30px 0 50px 0;
  }

  .glass-content {
    gap: 40px;
  }

  .glass-left {
    padding-right: 40px;
  }

  /* Fleet */
  .fleet {
    padding: 60px 0;
  }

  .fleet h2 {
    font-size: 2rem;
  }

  .fleet-subtitle {
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .fleet-card {
    padding: 25px;
  }

  /* Ready to Ride */
  .ready-to-ride {
    padding: 80px 0;
  }

  .ready-to-ride h2 {
    font-size: 2rem;
  }

  .ready-to-ride p {
    font-size: 0.95rem;
  }

  /* Footer */
  .footer-main {
    flex-direction: column;
  }

  .footer-left {
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-left h3 {
    font-size: 1.3rem;
    text-align: center;
  }

  .footer-right {
    width: 100%;
    padding: 50px 20px; /* Reduced side padding */
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-right ul {
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    width: 100%;
  }

  .footer-right ul li {
    justify-content: flex-start;
    font-size: 0.9rem;
    width: 100%;
  }

  .footer-right ul li span:not(.contact-icon) {
    font-size: 16px; /* Slightly reduced to fit better */
    word-break: break-word; /* Allow breaking for long emails */
    flex: 1; /* Allow text to take remaining space */
  }

  .footer-bottom {
    font-size: 0.8rem;
  }
}

/* Mobile Landscape & Small Tablet (600px and below) */
@media (max-width: 600px) {
  /* Why Us - Single column */
  .features-grid {
    grid-template-columns: 1fr;
    border-top: none;
  }

  .feature-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .feature-card:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .feature-card:nth-child(2),
  .feature-card:nth-child(3),
  .feature-card:nth-child(4) {
    border-top: none;
  }

  /* Services */
  .glass-content {
    flex-direction: column;
    gap: 30px;
  }

  .glass-content::before {
    display: none;
  }

  .glass-left {
    padding-right: 0;
  }

  /* Fleet - Single column */
  .fleet-grid {
    grid-template-columns: 1fr;
    border-top: none;
  }

  .fleet-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .fleet-card:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .fleet-card:nth-child(2),
  .fleet-card:nth-child(3),
  .fleet-card:nth-child(4),
  .fleet-card:nth-child(5),
  .fleet-card:nth-child(6) {
    border-top: none;
  }
}

/* Mobile Portrait (480px and below) */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .logo {
    padding: 0;
    font-size: 16px;
    gap: 8px;
  }

  .menu-toggle {
    padding: 0;
  }


  /* Hero */
  .hero-image {
    height: 300px;
  }

  .hero-content {
    padding: 40px 20px;
  }

  .hero-content h1 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
  }

  .hero-content .subtitle {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
  }

  .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
  }

  /* About */
  .about {
    padding: 60px 0;
  }

  .about-text h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
  }

  .about-text p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
  }

  .about-subtitle {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
    margin-top: 0;
  }

  .about-image img {
    max-width: 180px;
  }

  /* Why Us */
  .why-us {
    padding: 50px 0;
  }

  .why-us h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .feature-card {
    padding: 20px;
  }

  .step-number {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }

  .feature-card p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
  }

  .cta-banner {
    padding: 30px 15px;
  }

  .cta-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
  }

  .cta-subtitle {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
  }

  /* Services */
  .main-service {
    min-height: 550px;
  }

  .service-header {
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-header h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 56px;
    letter-spacing: 0;
  }

  .glass-bottom-wrapper {
    padding: 25px 0 40px 0;
  }

  .glass-content {
    padding: 0 15px;
    gap: 25px;
  }

  .glass-left p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
  }

  .glass-right ul li {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    margin-bottom: 10px;
  }

  /* Increase blur for mobile */
  .glass-blur-overlay {
    backdrop-filter: blur(100px); /* Increased from 80px */
    -webkit-backdrop-filter: blur(100px);
    background: rgba(255, 255, 255, 0.05); /* Slightly more opaque */
  }

  /* Fleet */
  .fleet {
    padding: 50px 0;
  }

  .fleet h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
  }

  .fleet-subtitle {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .fleet-card {
    padding: 20px;
  }

  .fleet-heading {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    margin-bottom: 15px;
  }

  .fleet-card p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
  }

  /* Ready to Ride */
  .ready-to-ride {
    padding: 160px 0;
  }

  .ready-to-ride h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 20px;
  }

  .ready-to-ride p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  /* Footer */
  .footer-left {
    padding: 35px 20px;
  }

  .footer-logo {
    margin-bottom: 30px;
  }

  .footer-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
  }

  .footer-left h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: center;
  }

  .footer-right {
    padding: 35px 20px;
  }

  .footer-right ul {
    gap: 20px;
  }

  .footer-right ul li {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 0.9rem;
  }

  .footer-right ul li span:not(.contact-icon) {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
  }

  .contact-icon {
    margin-top: 0;
  }

  .footer-bottom {
    padding: 20px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
  }

  .footer-bottom strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
  }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
  /* .hero-content h1 removed to inherit 48px from 480px query */

  .about-text h2 {
    font-size: 1.4rem;
  }

  .why-us h2,
  .fleet h2 {
    font-size: 1.4rem;
  }

  .service-header h2 {
    font-size: 1.5rem;
  }

  .cta-title {
    font-size: 1.2rem;
  }

  .ready-to-ride h2 {
    font-size: 1.3rem;
  }

  .footer-left h3 {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
