* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
}
.brand {
  display: flex;
  align-items: center;
}

.logo {
  height: 55px;
  width: auto;
  object-fit: contain;
  margin-top: 50px; /* adjust up/down by ±2px for fine-tuning if needed */
}
.logo-link, .logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none; /* Remove underline */
}
.logo-link:visited { color: inherit; }

.logo-link:visited {
  color: inherit;
}


.lines-decor {
  height: 129px;        /* or adjust to match header height */
  opacity: 0.22;        /* 25% transparency */
  object-fit: contain;
}

.main-logo {
  height: 60px;        /* your existing logo height */
  object-fit: contain;
}


/* Top Bar */
.top-bar {
  height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: stretch; /* make children fill the height */
  padding: 0 0px;
  background-color: white;
  /*border-bottom: 1px solid #eee;*/
}


.top-nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: stretch;  /* stretch each item */
  height: 100%;
}

.top-nav-links li {
  height: 100%;
  display: flex;
}
.top-nav-links a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 10px;
  font-weight: 500;
  text-decoration: none;
  color: black;
}


.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 128px;              /* wider width */
  height: 100%;

  padding-left: 36px;        /* more left space */
  padding-right: 20px;

  background-color: #e30613;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-btn:hover {
  color: black;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  background-color: #e30613;
}
.contact-btn:hover {
  color: black !important;
}
.contact-btn:visited,
.contact-btn:focus {
  color: white;
}
/* Main Nav */
.main-nav {
  background-color: white;
  border-bottom: 1px solid #eee;
}

.menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  padding: 10px 30px;
  align-items: center;
}

.menu li {
  position: relative;
  z-index: 10;
}

.menu li a {
  text-decoration: none;
  color: black;
  font-weight: normal;
}

.menu li a.active {
  color: orange;
}
.menu li.dropdown {
  position: relative;
}
.menu li.dropdown:hover .services-dropdown {
  display: grid;
}

.menu li.dropdown:hover .sectors-dropdown {
  display: grid;
}


/* Dropdowns remain the same */


/* Dropdowns */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%-16px);
  z-index: 9999;
  background: #ff1e1e;
  border-radius: 16px;
  padding: 30px;
  display: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Add these to your dropdown CSS */
.dropdown-content .item a {
  display: block;
  color: inherit;
  background: none;
  text-decoration: none;
  font: inherit;
  padding: inherit;
  border-radius: inherit;
  transition: inherit;
}

.dropdown-content .item a:hover, 
.dropdown-content .item a:focus {
  background: rgba(255,255,255,0.1); /* or whatever highlight you use */
  color: #ff3333; /* your hover color */
}

/* Remove default focus ring unless wanted */
.dropdown-content .item a:focus {
  outline: none;
}


.menu li.dropdown:hover .services-dropdown {
  display: grid;
}

.menu li.dropdown:hover .sectors-dropdown {
  display: grid;
}

/* SERVICES DROPDOWN */
.services-dropdown {
  
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 40px;
  
  
  position: absolute;
  
  
  
  display: none;
  
  position: absolute;
  top: 100%;
  left: calc(50% - 85px);
  transform: translateX(-58%);
  z-index: 9999;

  background: rgba(255, 0, 0, 0.95);
  border-radius: 20px;
  padding: 30px;

  display: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);

  width: 850px;
  max-width: calc(100vw - 32px); /* Optional safety */
}


/* SECTORS DROPDOWN */
.sectors-dropdown {
  
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 40px; /* row-gap, column-gap */
  padding: 30px;
  
  
  
  transform: translateX(-50%);
  
  border-radius: 20px;
  
  
  position: absolute;
  top: 100%;
  left: calc(50% - 170px);
  transform: translateX(-58%);
  z-index: 9999;

  background: rgba(255, 0, 0, 0.95);
  border-radius: 20px;
  padding: 30px;

  display: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);

  width: 850px;
  max-width: calc(100vw - 32px); /* Optional safety */
}



.services-dropdown div,
.sectors-dropdown div {
  color: white;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 10px;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  line-height: 1.4;
}

.services-dropdown .item span {
  display: inline-block;
  color: white;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 10px;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.sectors-dropdown .item span {
  display: inline-block;
  color: white;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 10px;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.services-dropdown .item span {
  display: inline-block;
  color: white;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 10px;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.services-dropdown .item span:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: black;
}
.sectors-dropdown .item span:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: black;
}
.sectors-dropdown .item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

/* Footer Styling */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #fff;
  padding: 40px 60px;
  border-top: 1px solid #eee;
  font-size: 14px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  margin: 10px;
  min-width: 220px;
}

.footer-column.left ul {
  list-style: none;
  padding: 0;
}

.footer-column.left ul li {
  margin-bottom: 10px;
}

.footer-column.left ul li a {
  color: black;
  text-decoration: none;
  font-weight: 500;
}

.footer-column.left ul li a.active {
  color: orange;
  font-weight: bold;
}

.footer-column.center h4,
.footer-column.right h4 {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-column.center p {
  margin-bottom: 5px;
  color: #333;
}

.footer-column.center a {
  text-decoration: none;
  color: #000;
}
.address-row {
  display: flex;
  gap: 40px; /* Adjust the space between the addresses */
  justify-content: center; /* Optional: Center them horizontally in the column */
}

.address-block {
  min-width: 220px;
  max-width: 300px;
}




.footer-column.right .footer-links {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.footer-contact-btn {
  display: inline-block;
  background: red;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 2px;
}


body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* HEADER / FOOTER revert to original styles (not shrunk) */

/* ---- SLIDER SECTION ---- */
.slider {
  position: relative;
  width: 100vw;
  height: 85vh;
  min-height: 420px;
  background: #222;
  overflow: hidden;
}

.slides {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  transition: opacity 1s cubic-bezier(.7,0,.3,1);
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.slide-img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  filter: brightness(0.64) blur(0.5px);  /* blurred bokeh effect */
}

.slide-content {
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  z-index: 2;
  pointer-events: none;
}

.slide-text {
  position: absolute;
  bottom: 90px;         /* a bit more spacing from bottom */
  left: 80px;           /* a bit more from left edge */
  font-size: 3.5rem;    /* make text a bit larger */
  color: #e30613;
  font-weight: 500;
  max-width: 1200px;
  opacity: 0;
  transform: translateX(-80px);
  transition: all 0.5s cubic-bezier(.72,0,.28,1);
}
.slide.active .slide-text {
  opacity: 1;
  transform: translateY(0);
}

.slide-text h1 {
  font-size: 3.0rem;
  color: #e30613;
  font-weight: 400;
  max-width: 80vw;
  margin-bottom: 1vw;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 18px #fff7, 0 2px 10px #0007;
}

.slide-text p {
  font-size: 1.2rem;
  color: #fff;
  max-width: 36vw;
  margin: 0.7vw 0 0 0;
  text-shadow: 0 2px 12px #0007;
}

.vectors {
  position: absolute;
  right: 5vw;
  bottom: 0;
  top: 0;
  height: 100%;
  width: 100%;    /* Or 220px, or as wide as you like */
  min-width: 80px;
  max-width: 340px;
  pointer-events: none;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
/*.vector-svg {
  position: absolute;
  bottom: 0; right: 0;
  opacity: 1;
  height: 900px;
  transition: opacity 0.8s, transform 0.8s;
}*/

.vectors svg {
  width: 100%;
  height: 100%;
  display: block;
  transform: rotate(-15deg);
  /* This ensures stretching to fill container vertically and horizontally */
}


.vector-svg.yellow { right: 0;   width: 6vw; }
.vector-svg.orange { right: 4vw; width: 7vw;}
.vector-svg.red    { right: 8vw; width: 8vw;}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .slide-text h1 { font-size: 4vw; }
  .slide-text p { font-size: 1.7vw; }
}
@media (max-width: 800px) {
  .slide-text { left: 4vw; max-width: 80vw; }
  .slide-text h1 { font-size: 6vw; }
  .slide-text p { font-size: 2vw; }
}
@media (max-width: 500px) {
  .slide-text { left: 3vw; bottom: 6vw; max-width: 90vw; }
  .slide-text h1 { font-size: 7vw; }
  .slide-text p { font-size: 3vw; }
  .vectors { width: 40vw; }
  .vector-svg.yellow { width: 11vw; }
  .vector-svg.orange { width: 13vw; right: 7vw;}
  .vector-svg.red { width: 15vw; right: 13vw; height: 100%;}
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(30,30,30,0.10);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 2.6rem;
  width: 48px; height: 48px;
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 6px 22px #0002;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.slider-arrow.left  { left: 28px; }
.slider-arrow.right { right: 28px; }
.slider-arrow:hover { background: #e3061500; color: #fff; }


/* Disabled state */
.slider-arrow:disabled,
.blog-slider-arrow:disabled,
.sectors-arrow:disabled {
  opacity: 0.25;
  pointer-events: none;
}

/* SVG arrows, if you use them */



/* ---- MISSION ---- */
.mission-section {
  width: 100%;
  background: #fffdfa;
  padding: 52px 0 44px 0;
  display: flex;
  justify-content: center;
}
.mission-container {
  background: #fffdfa;
  max-width: 1200px;    /* slightly wider than compact version */
  width: 95vw;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
  max-width: 1200px;
  width: 95vw;
  margin: 0 auto;
  text-align: left;  
}
.mission-title {
  color: #ff5500;
  font-size: 38px;
  margin-bottom: 28px;
  font-weight: 400;
  text-align: left;        /* NEW: Left align the heading */
  margin-left: 56px; 
}
.mission-text {
  font-size: 22px;
  color: #181c32;
  font-weight: 400;
  font-family: inherit;
  line-height: 1.4;
  text-align: left;     /* Left align */
  margin-left: 56px;    /* EXACT same as .mission-title */
  margin-right: 0;      /* Remove any auto margins */
  max-width: 950px;     /* Optional: keep paragraph from going too wide */
}

/* ---- SKILLS ---- */
.skills-section {
  width: 100%;
  background: #fff;
  padding: 52px 0 32px 0;
  text-align: center;
}
.skills-title {
  font-size: 38px;
  color: #333;
  margin-bottom: 44px;
  font-weight: 400;
}
.skills-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1250px;
}
.skill-card {
  flex: 1 1 280px;
  background: #fff;
  border: 2.5px solid #eaeaea;
  border-radius: 26px;
  box-shadow: none;
  padding: 34px 26px 28px 26px;
  min-width: 210px;
  max-width: 420px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  transition: box-shadow 0.22s;
}
.skill-card h3 {
  font-size: 29px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
}
.skill-card p {
  font-size: 14px;
  color: #232333;
  font-weight: 100;
  font-family: inherit;
  line-height: 1.35;
}
.blog-section {
  position: relative;
  width: 100vw;
  min-height: 520px;
  background: #fff;
  overflow: hidden;
  padding: 80px 0 60px 0;
}

.blog-wave-bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.blog-wave-bg img {
  position: absolute;
  left: 50%;
  bottom: -200px;
  transform: translateX(-50%);
  width: 100vw;    /* Lower % = more zoomed out; try 70vw, 80vw, 90vw */
  height: auto;   /* Keeps proportions */
  object-fit: contain;  /* Ensures the whole wave fits */
  user-select: none;
  pointer-events: none;
}


.blog-cards {
  position: relative;
  z-index: 2; /* Makes sure cards are above the wave */
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 38px;
  padding: 0 30px;
  margin-left: 180px;
}

.blog-card {
  background: #ff9e3d9b;
  border: 1px solid #918f8f;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(30,40,50,0.08);
  min-width: 260px;
  max-width: 270px;
  min-height: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.blog-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.blog-meta {
  font-size: 13px;
  color: #998;
  margin: 12px 18px 0 18px;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}

.blog-title {
  font-size: 16px;
  font-weight: 500;
  color: #191919;
  margin: 10px 18px 4px 18px;
  line-height: 1.25;
  margin-bottom: 18px;
}

.blog-desc {
  font-size: 12px;
  color: #3c3c3c;
  margin: 0 18px 12px 18px;
  min-height: 40px;
  line-height: 1.45;
  margin-bottom: 18px;
}

.blog-divider {
  height: 1px;
  background: #403f3f33;
  width: calc(100% - 36px);
  margin: 70px 18px 0px 18px;
  border: none;
}

.blog-stats {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  font-size: 14px;
  color: #a7a7a7;
  margin: 10px 18px 10px 18px;
  min-height: 28px;
  justify-content: flex-start;
}

.blog-heart {
  margin-left: auto;
  color: #fc7d5a;
}

.blog-stats i.fa-heart {
  color: #fc7d5a;
}

.blog-stats i {
  margin-right: 3px;
}

/* Responsive */
@media (max-width: 1100px) {
  .blog-cards { gap: 18px; }
  .blog-card { min-width: 220px; max-width: 230px; }
}
@media (max-width: 850px) {
  .blog-cards { flex-wrap: wrap; justify-content: center; }
  .blog-card { min-width: 160px; max-width: 98vw; }
}
@media (max-width: 600px) {
  .blog-cards { flex-direction: column; align-items: center; gap: 16px; }
  .blog-section { padding: 24px 0 18px 0; }
}

.sectors-bg-img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.sectors-bg-img img {
  
  position: absolute;
  left: 50%;
  bottom: -220px; /* Increase negative value to move image further down */
  transform: translateX(-50%);
  width: 180vw;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}


.sectors-section {
  position: relative;
  min-height: 650px; /* or however much space you want the section to take */
  padding: 120px 0 100px 0;
  overflow: hidden;
}


.sectors-header,
.sectors-slider-wrapper {
  position: relative;
  z-index: 2; /* Keep content above background */
  
}

.sectors-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px 150px 20px;
}

.sectors-header h2 {
  color: #ca4100;
  font-size: 54px;
  font-weight: 400;
}

.sectors-all-btn {
  background: #e30613;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 24px;
  padding: 16px 42px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.sectors-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 0 0 0;
  width: 100%;
  overflow: hidden;
}

.sectors-slider-track {
  display: flex;
  gap: 42px;
  transition: transform 0.6s cubic-bezier(.7,0,.3,1);
  will-change: transform;
  padding-left: 30px;
}

.sector-card {
  flex: 0 0 340px;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: transparent;
  box-shadow: 0 8px 32px #0001;
  transition: box-shadow 0.2s;
}

.sector-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: filter 0.3s;
}

.sector-card:hover .sector-img {
  filter: brightness(60%) blur(2px);
}

.sector-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: rgba(236, 93, 0, 0.76); /* orange overlay, adjust as needed */
  color: #fff;
  padding: 32px 24px;
  border-radius: 0px;
  /* Start hidden (translated to bottom) */
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.7,0,.3,1), opacity 0.4s cubic-bezier(.7,0,.3,1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sector-card:hover .sector-overlay,
.sector-card:focus-within .sector-overlay {
  transform: translateY(0);
  opacity: 1;
}
a {
  text-decoration: none;   /* removes underline */
  color: inherit;          /* makes the link inherit its parent color */
}

.sector-overlay h3 {
  font-size: 1.35em;
  margin-bottom: 10px;
  font-weight: bold;
}

.sector-overlay p {
  font-size: 0.52em;
  line-height: 1.45;
  font-weight: 400;
}

/* Slider Arrows */
.sectors-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: #fff;
  color: #e30613;
  border: none;
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 2px 10px #0002;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.95;
  transition: background 0.15s;
}

.sectors-arrow.left { left: 0; }
.sectors-arrow.right { right: 0; }

.sectors-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}
.main-content-bg {
  background: url('pictures/back.png') no-repeat center center;
  background-size: cover;
  padding-top: 40px;    /* space above, adjust as you like */
  padding-bottom: 100px; /* space below, adjust as you like */
  /* Optional: fade effect if needed*/
  position: relative;
  z-index: 1;
  
}

.blog-slider-section,
.sectors-section {
  background: transparent !important; /* Ensure these are fully transparent */
}
.last-section {
  position: relative;
  overflow: hidden;
  min-height: 450px; /* Ensure the section is tall enough */
}
.last-section-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.last-section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;   /* Set your desired opacity */
  position: absolute;
  left: 0; top: 0;
  user-select: none;
  pointer-events: none;
}

.last-section-content {
  max-width: 1600px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  margin-top: -200px;
  margin-right: 300px;
  padding: 60px 36px;
  z-index: 1;
}

.last-section h2 {
  color: #ff5500;
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 32px;
  font-family: inherit;
  letter-spacing: 1px;
}

.last-section p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
  max-width: 90vw;
}
.section-spacing {
  padding-top: 200px;
  padding-bottom: 200px;
}






/* ---- Responsive for Medium screens ---- */
@media (max-width: 1200px) {
  .mission-container, .skills-cards { max-width: 97vw; }
  .slide-text { font-size: 1.5rem; max-width: 80vw;}
  .vector-img.red { height: 66vh; }
  .vector-img.orange { height: 48vh; }
  .vector-img.yellow { height: 32vh; }
}
@media (max-width: 700px) {
  .slider { height: 52vw; min-height: 270px; }
  .slide-text { font-size: 1rem; left: 7vw; bottom: 6vw; }
  .vector-img.red { height: 33vw; }
  .vector-img.orange { height: 22vw; }
  .vector-img.yellow { height: 15vw; }
}

/* Default for desktop */
.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns desktop */
  gap: 18px 38px;
}

/* Tablet breakpoint */
@media (max-width: 900px) {
  .dropdown-content, .blog-article {
    padding: 18px 3vw;
    min-width: unset;
    max-width: 97vw;
  }
  .dropdown-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
  }
}

/* Mobile breakpoint */
@media (max-width: 600px) {
  .dropdown-content, .blog-article {
    padding: 12px 1vw;
    max-width: 99vw;
  }
  .dropdown-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
  .dropdown-heading, .blog-title {
    font-size: 1.1rem;
  }
}
