@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Momo+Trust+Display&display=swap");

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body,
h1,
h2,
h3,
p,
ul,
li,
a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
}

/* --- HEADER --- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(31, 34, 38, 0.85); /* Semi-transparent by default */
  backdrop-filter: blur(10px);
  padding: 5px 0;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header.solid-bg {
  background-color: #1f2226;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
}

.logo a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  margin: 0 15px;
  transition: color 0.3s;
}

.logo img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  margin: 0 15px;
  transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  color: #f98203;
}

.book-now-header {
  display: inline-block;
  padding: 8px 20px;
  background-color: #f98203;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: background-color 0.3s;
}

.book-now-header:hover {
  background-color: #e07000;
}

/* Menu Toggle (Hamburger) - Hidden on Desktop */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: #ffffff;
  cursor: pointer;
}

/* Mobile specific button class */
.mobile-only-btn {
  display: none;
}

.desktop-only-btn {
  display: inline-block;
}

/* --- HERO SECTION (HOME) --- */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  color: #ffffff;
}

.video-background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.video-background-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Reduced opacity for clearer video */
  z-index: 2;
}

.hero-content {
  position: relative;
  left: 10%;
  top: 25%;
  z-index: 3;
  padding: 20px;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-family: "Lora", serif;
}

.hero-content h2 {
  font-size: 1.5rem;
  font-weight: 400;
}

#welcome_area {
  background-color: rgba(255, 253, 253, 0.19);
  width: fit-content;
  height: 3.2rem;
  padding: 0.2rem 1.5rem 0.2rem 1rem;
  display: flex;
  align-items: center;
  border-radius: 999px;
  margin-top: 1.5rem;
  margin-bottom: 20px;
}

#welcome_img {
  height: 2.8rem;
  width: 2.8rem;
  border-radius: 50%;
  margin-right: 1rem;
  margin-left: -0.5rem;
}

#welcome_txt {
  display: inline-block;
  font-family: "Lora", serif;
  font-size: 1.4rem;
  color: #fff;
  margin: 0;
}

.corner-pattern {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  width: 35rem;
  height: 25rem;
  background-image: url("images/cars/thar/thar_1.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  animation: imageSlideshow 20s infinite;
}

@keyframes imageSlideshow {
  0%, 10% { background-image: url("images/cars/corner_pattern/fortuner.png"); }
  10.01%, 20% { background-image: url("images/cars/corner_pattern/creta.png"); }
  20.01%, 30% { background-image: url("images/cars/corner_pattern/creta.png"); }
  30.01%, 40% { background-image: url("images/cars/corner_pattern/fronx.png"); }
  40.01%, 50% { background-image: url("images/cars/corner_pattern/roxx.png"); }
  50.01%, 60% { background-image: url("images/cars/corner_pattern/safari.png"); }
  60.01%, 70% { background-image: url("images/cars/corner_pattern/scorpio_s11.png"); }
  70.01%, 80% { background-image: url("images/cars/corner_pattern/scorpion.png"); }
  80.01%, 90% { background-image: url("images/cars/corner_pattern/thar.png"); }
  90.01%, 100% { background-image: url("images/cars/corner_pattern/xuv700.png"); }
}

.gradient-text {
  background-image: linear-gradient(20deg, #f5f264, #f98203);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Momo Trust Display", sans-serif;
  font-size: 3rem;
  font-weight: bolder;
  position: relative;
  top: 2rem;
  margin-bottom: 10px;
}

.button-container {
  margin-top: 50px;
  z-index: 4;
  position: relative;
  display: flex;
  gap: 20px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 999px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.hero-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.77), 0 0 20px rgba(249, 130, 3, 0.79);
  border-color: #f98203;
  color: #f98203;
}

/* --- FEATURES SECTION --- */
.feature-wrapper {
  background-color: #2c2f35;
  padding: 30px 0;
}

.features-section {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 40px auto;
  background-color: #2c2f35;
  border-radius: 50px;
  border: 2px solid rgb(133, 132, 131);
  overflow: hidden;
  color: #ffffff;
  padding: 0;
}

.feature-box {
  flex: 1 0 250px;
  min-width: 0;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background-color 0.3s;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.features-section .feature-box:last-child {
  border-right: none;
}

.feature-box.primary-bg {
  background-color: #3b424a;
}

.icon-title-group {
  margin-bottom: 20px;
}

.icon {
  font-size: 36px;
  margin-bottom: 10px;
  display: block;
  color: #ffffff;
}

.title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}

.description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #b0b4b8;
}

/* --- SHARED CAR CARD STYLES --- */
.fleet-section-wrapper {
  background-color: #fdfdfd;
  padding: 80px 20px;
  text-align: center;
}

.fleet-section {
  max-width: 1200px;
  margin: 0 auto;
}

.fleet-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #1f2226;
}

.fleet-section p.subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}

.car-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.car-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  flex: 1 1 300px;
  max-width: 350px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
  border: 1px solid #ddd;
}

.car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.car-image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid #eee;
}

.car-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Slideshow Animation */
@keyframes carSlideshow {
  0% { opacity: 1; }
  18% { opacity: 1; }
  20% { opacity: 0; }
  100% { opacity: 0; }
}

.slideshow-img:nth-child(1) { animation: carSlideshow 15s infinite; opacity: 1; }
.slideshow-img:nth-child(2) { animation: carSlideshow 15s infinite; animation-delay: 3s; }
.slideshow-img:nth-child(3) { animation: carSlideshow 15s infinite; animation-delay: 6s; }
.slideshow-img:nth-child(4) { animation: carSlideshow 15s infinite; animation-delay: 9s; }
.slideshow-img:nth-child(5) { animation: carSlideshow 15s infinite; animation-delay: 12s; }

.car-info {
  padding: 20px;
}

.car-info h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #1f2226;
}

.car-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #666;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.detail-item i {
  color: #f98203;
  font-size: 1.1rem;
}

.car-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f98203;
  margin-bottom: 15px;
  display: block;
}

.car-price small {
  font-size: 0.8rem;
  font-weight: normal;
  color: #999;
}

.rent-now-btn {
  display: block;
  width: 100%;
  padding: 10px 0;
  background-color: #f98203;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-align: center;
}

.rent-now-btn:hover {
  background-color: #e07000;
}

.view-all-container {
  margin-top: 40px;
  color: #666;
}
.view-all-link {
  color: #f98203;
  text-decoration: none;
  font-weight: bold;
}

/* --- WHY CHOOSE US --- */
.why-choose-section-wrapper {
  background-color: #fdfdfd;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

.why-choose-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

.why-choose-section .left-content {
  flex: 1;
  min-width: 350px;
  position: relative;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.why-choose-section .right-content {
  flex: 1;
  min-width: 400px;
  background-color: #3b424a;
  border-radius: 20px;
  padding: 40px;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  left: 2.5rem;
  width: 20vw;
}

.stats-bar {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
  color: #8c8c8c;
  font-weight: bold;
  position: relative;
  left: 25rem;
  justify-content: flex-end;
  width: 100%;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.8rem;
  color: #f98203;
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #b0b4b8;
}

.image-stack-container {
  position: relative;
  width: 350px;
  height: 550px;
  bottom: 5rem;
  left: 0;
}

.image-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bottom-image {
  width: 100%;
  height: 85%;
  top: 0;
  left: -2.5rem;
  z-index: 1;
}

.top-image {
  width: 55%;
  height: 40%;
  bottom: 0;
  right: -20px;
  z-index: 1;
  border: 15px solid white;
  border-radius: 50px;
}

.image-overlay-card {
  position: absolute;
  top: 3rem;
  left: 7rem;
  background-color: #3b424a;
  border-radius: 25px;
  padding: 15px 20px;
  display: flex;
  height: 3rem;
  width: 15rem;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.9rem;
  z-index: 3;
}

.overlay-icon {
  font-size: 0.8rem;
  object-fit: cover;
}
#overlay-cover {
  background-color: rgb(236, 235, 236);
  border-radius: 50%;
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
}
#overlay-cover img {
  width: 1.5rem;
  height: 1.5rem;
}

.testimonial-card {
  position: absolute;
  height: 15%;
  bottom: 0px;
  left: -54px;
  background-color: #3b424a;
  border-radius: 15px;
  padding: 20px 25px;
  color: #ffffff;
  text-align: center;
  z-index: 3;
  border: white solid 15px;
  border-radius: 0px 50px 0px 50px;
}

.testimonial-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #f98203;
  display: block;
  margin-bottom: 5px;
}

.testimonial-label {
  font-size: 0.9rem;
  color: #b0b4b8;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.2rem 1rem;
  font-size: 0.85rem;
  font-weight: bold;
  color: #b0b4b8;
}

.right-content .about-icon {
  font-size: 1.1rem;
  color: #f98203;
}

.right-content h2 {
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.2;
  color: #ffffff;
}

.right-content .main-description {
  font-size: 0.8rem;
  line-height: 1;
  color: #b0b4b8;
  margin-bottom: 25px;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.benefit-list li i {
  color: #f98203;
  font-size: 1.2rem;
}

.book-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #f98203;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(249, 130, 3, 0.4);
}

.book-now-btn:hover {
  background-color: #e07000;
  box-shadow: 0 7px 20px rgba(249, 130, 3, 0.6);
}

/* --- TESTIMONIALS --- */
.testimonial-section-wrapper {
  background-color: #2c2f35;
  padding: 80px 20px;
}

.testimonial-section {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.testimonial-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.testimonial-section p.subtitle {
  font-size: 1.1rem;
  color: #b0b4b8;
  margin-bottom: 50px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.t-card {
  background-color: #3b424a;
  border-radius: 15px;
  padding: 30px;
  flex: 1 1 300px;
  max-width: 350px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.t-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(249, 130, 3, 0.4);
}

.t-quote {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
}

.t-quote::before {
  content: "❝";
  position: absolute;
  top: -15px;
  left: -5px;
  font-size: 2rem;
  color: #f98203;
  opacity: 0.5;
  line-height: 1;
}

.t-author-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.t-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f98203;
}

.t-name {
  font-weight: bold;
  font-size: 1.1rem;
}

.t-title {
  font-size: 0.9rem;
  color: #b0b4b8;
}


/* --- FOOTER --- */
.footer-wrapper {
  background-color: #1f2226;
  color: #b0b4b8;
  padding: 60px 20px 20px;
  font-family: sans-serif;
  line-height: 1.6;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-column h4::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #f98203;
  margin-top: 5px;
}

.footer-column p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.footer-column a {
  color: #b0b4b8;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: #f98203;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  color: #ffffff;
  font-size: 1.2rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  transition: background-color 0.2s, border-color 0.2s;
}

.social-icons a:hover {
  background-color: #f98203;
  border-color: #f98203;
  color: #ffffff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-top: 20px;
  font-size: 0.8rem;
}

.footer-bottom p a {
  color: #f98203;
  text-decoration: none;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 1250px) {
  .features-section {
    max-width: 95%;
  }
}

/* Mobile Menu Transformation */
@media (max-width: 1050px) {
  .header-content {
    flex-direction: row; 
    justify-content: space-between;
    padding: 10px 20px;
    text-align: left;
    position: relative;
  }
  
  /* Show hamburger */
  .menu-toggle {
    display: block;
  }

  /* Hide the desktop 'Book Now' button */
  .desktop-only-btn {
    display: none;
  }

  /* Transform Nav into Dropdown */
  .main-nav {
    display: none; /* Hidden by default */
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1f2226;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    align-items: center;
  }

  .main-nav.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }

  .main-nav a {
    margin: 15px 0;
    font-size: 1.1rem;
    display: block;
    width: 100%;
    text-align: center;
  }

  /* Show mobile-only book button inside menu */
  .mobile-only-btn {
    display: inline-block;
    margin-top: 10px;
    width: 80%;
    text-align: center;
  }

  /* FIXED: Remove position: relative to allow video to go under header */
  /* FIXED: Remove background-color to allow video to show through */
  /* Default .main-header settings (fixed) will apply */
  
  .hero-section {
    height: 100vh; /* FIXED: Force full screen height on mobile */
    min-height: 600px; /* Safety min-height */
  }
  
  .hero-content {
    top: 15%; /* Adjusted top since header is now overlaying */
  }

  .why-choose-section {
    flex-direction: column;
    max-width: 600px;
    gap: 60px;
  }

  .why-choose-section .left-content {
    align-items: center;
    width: 100%;
    min-width: unset;
  }

  .why-choose-section .right-content {
    min-width: unset;
    width: 90%;
    padding: 40px;
    left: 0;
    height: auto;
    margin: 0 auto;
  }

  .stats-bar {
    position: static;
    margin-bottom: 20px;
    justify-content: center;
  }

  .image-stack-container {
    bottom: 0;
    margin: 0 auto;
    left: 0;
  }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .footer-content {
    justify-content: flex-start;
  }
  .footer-column {
    flex: 1 1 45%;
  }
}

@media (max-width: 700px) {
  .testimonial-section h2 {
    font-size: 2rem;
  }
  .testimonial-section p.subtitle {
    font-size: 1rem;
  }
  .t-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .car-grid {
    gap: 20px;
  }
  .car-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .fleet-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .hero-content {
    left: 1%;
    top: 12%; 
    width: 100%;
    height: auto;
    padding: 20px;
  }

  .video-background-container {
    position: absolute;
    width: 100%;
    height: 110%;
    z-index: 1;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content h2 {
    font-size: 1.2rem;
  }
  #welcome_area {
    width: 82%;
  }
  #welcome_txt {
    font-size: 1.3rem;
  }
  .corner-pattern {
    width: 22rem;
    height: 19rem;
    right: 1rem;
    padding-bottom: 80%;
    opacity: 1;
  }

  .button-container {
    margin-top: 20px;
    flex-wrap: wrap; 
    justify-content: center;
  }
  .hero-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    position: relative;
    top: 20rem;
  }

  .features-section {
    flex-wrap: wrap;
    max-width: 90%;
    margin: 30px auto;
    padding: 0;
  }

  .feature-box {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .features-section .feature-box:last-child {
    border-bottom: none;
  }

  .why-choose-section-wrapper {
    padding: 40px 10px;
  }

  .image-stack-container {
    width: 300px;
    height: 450px;
    margin: 0 auto;
  }

  .bottom-image {
    left: -1rem;
  }

  .top-image {
    right: -10px;
    border: 10px solid white;
  }

  .image-overlay-card {
    top: 3rem;
    left: 3rem;
    width: 14rem;
    padding: 10px 15px;
  }

  .testimonial-card {
    left: -30px;
    padding: 15px 20px;
    border: white solid 10px;
  }

  .right-content h2 {
    font-size: 1.7rem;
  }
  .right-content {
    width: 100%;
    padding: 30px 20px;
    box-sizing: border-box;
  }
}

@media (max-width: 500px) {
  .footer-column {
    flex: 1 1 100%;
    min-width: unset;
  }
}