/* LMN Innovations - Main Stylesheet */

:root {
  /* Color Palette */
  --primary: #0A4F8B;
  --secondary: #00A99D;
  --accent: #FFA500;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #212529;
  --white: #ffffff;
  
  /* Typography */
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Lato', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--dark-gray);
  line-height: 1.6;
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--primary);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 4rem 0;
}

.bg-light {
  background-color: var(--light-gray);
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

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

.btn-primary:hover {
  background-color: #083d6e;
  color: var(--white);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: #008c82;
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Header & Navigation */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 100px; /* Increased from 50px */
  width: auto;
  margin-right: 1rem;
}

.tagline {
  font-size: 0.9rem;
  color: var(--medium-gray);
  font-style: italic;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 1.2rem;
}

nav ul li a {
  font-weight: 500;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.search-bar {
  display: flex;
  align-items: center;
}

.search-bar input {
  padding: 0.5rem;
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  margin-right: 0.5rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(10, 79, 139, 0.8), rgba(10, 79, 139, 0.8)), url('../images/hero-placeholder.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 8rem 0;
}

.hero h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* Card Layouts */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.card-img {
  height: 200px;
  background-color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

/* Brand Grid Styles */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.brand-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.brand-item img {
    max-width: 100%;
    height: 60px;
    object-fit: contain; /* show the whole image, possibly with empty space */
    margin-bottom: 1rem;
}

.brand-item h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--primary);
}

/* Enhanced Content Sections */
.enhanced-content {
    background-color: rgba(10, 79, 139, 0.05);
    border-left: 4px solid var(--primary);
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.enhanced-content p {
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Expertise Stats Section */
.expertise-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--medium-gray);
}

/* Global Presence Section - FURTHER ENHANCED */
.global-presence {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
}

.region {
    flex: 1;
    text-align: center;
    background-color: var(--white);
    border-radius: 15px; /* Increased from 12px */
    padding: 3rem 2rem; /* Increased padding */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.region:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.region-icon {
    width: 180px; /* Increased from 120px */
    height: 180px; /* Increased from 120px */
    background-color: rgba(0, 169, 157, 0.08); /* Lighter background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Enhanced shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.region-icon:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.region-icon img {
    width: 120px; /* Increased from 70px */
    height: 120px; /* Increased from 70px */
    object-fit: contain; /* show the whole image, possibly with empty space */
}

.region h4 {
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.6rem; /* Increased font size */
}

.region p {
    color: var(--medium-gray);
    margin-bottom: 0;
    font-size: 1.1rem; /* Increased font size */
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
}

.cta-section h2 {
  color: var(--white);
}

.cta-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.cta-section .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.cta-section .btn-outline:hover {
  background-color: var(--white);
  color: var(--primary);
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

input, select, textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  font-family: var(--body-font);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-logo img {
  height: 90px; /* Increased from 40px */
  width: auto;
  margin-bottom: 1rem;
}

.footer-links h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li a {
  color: var(--light-gray);
}

.footer-links ul li a:hover {
  color: var(--secondary);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.footer-bottom-links {
  margin-top: 0.5rem;
}

.footer-bottom-links a {
  color: var(--light-gray);
}

/* About Page Styles */
.page-banner {
  background-color: var(--primary);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.page-banner h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 2rem 0;
}

.about-image img {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.value-icon {
  width: 160px;
  height: 160px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(10, 79, 139, 0.1);
  border-radius: 50%;
}

.value-icon img {
  width: 100px;
  height: 100px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.member-image {
  height: 250px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* show the whole image, possibly with empty space */
}

.team-member h3 {
  margin: 1.5rem 0 0.5rem;
}

.member-title {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-member p {
  padding: 0 1.5rem 1.5rem;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.location-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.location-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
}

.location-card p {
  padding: 0 1.5rem 1.5rem;
  color: var(--secondary);
  font-weight: 500;
}

.location-map {
  height: 200px;
  overflow: hidden; /* you can keep this to hide any extra space */
}

.location-map img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* show the whole image, possibly with empty space */
}

/* Products Page Styles */
.product-category {
  margin-bottom: 4rem;
}

.product-category:last-child {
  margin-bottom: 0;
}

.product-category-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.product-category-icon {
  width: 160px;
  height: 160px;
  background-color: rgba(10, 79, 139, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
}

.product-category-icon img {
  width: 100px;
  height: 100px;
}

/* Services Page Styles */
.service-section {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--light-gray);
}

.service-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.service-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.service-icon {
  width: 400px; /* Increased for larger service images */
  height: 300px; /* Increased for larger service images */
  background-color: transparent;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  margin-right: 2rem;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* show the whole image, possibly with empty space */
}

.service-content {
  flex: 1;
}

.service-benefits {
  background-color: var(--light-gray);
  border-radius: 8px;
  padding: 2rem;
  margin-top: 2rem;
}

.service-benefits h3 {
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.service-benefits ul {
  list-style: none;
}

.service-benefits ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-benefits ul li:before {
  content: "✓";
  color: var(--secondary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-form {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.location-info {
  margin-bottom: 2.5rem;
}

.location-info h4 {
  color: var(--secondary);
  margin-bottom: 1rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.contact-icon {
  width: 20px;
  margin-right: 1rem;
  color: var(--primary);
}

.map-container {
  height: 300px;
  background-color: var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 2rem;
}

/* Resources Page Styles */
.resource-card {
  display: flex;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.resource-image {
  flex: 0 0 250px;
  background-color: var(--light-gray);
}

.resource-content {
  padding: 2rem;
  flex: 1;
}

.resource-meta {
  display: flex;
  color: var(--medium-gray);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.resource-meta span {
  margin-right: 1.5rem;
}

.resource-tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.resource-tag {
  background-color: rgba(0, 169, 157, 0.1);
  color: var(--secondary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Partner Program Page Styles */
.benefits-list {
  margin: 2rem 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  background-color: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
  width: 160px;
  height: 160px;
  background-color: rgba(10, 79, 139, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.benefit-icon img {
  width: 100px;
  height: 100px;
}

.benefit-content h3 {
  margin-bottom: 0.75rem;
}

.partner-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* =========================================
   CARD-GRID FIX FOR PARTNER PROGRAM CARDS
========================================= */

.card-grid {
  display: grid;
  /* Use the same min-width & columns from .partner-tiers */
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  align-items: stretch; /* Ensures all cards have equal height */
  margin-top: 2rem;     /* or whatever spacing you prefer */
}

.card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Make the card fill the grid cell */
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* For the image area */
.card-img {
  width: 100%;
  height: 250px; /* Same height you used in .partner-tier */
  background-color: var(--light-gray);
  overflow: hidden;
  flex-shrink: 0;
}

/* Force the actual <img> to fill .card-img neatly */
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* show the whole image, possibly with empty space */
}

/* Content container for the text */
.card-content {
  padding: 1.5rem;
  flex-grow: 1; /* Make text area stretch */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  color: var(--primary);
  font-family: var(--heading-font);
}

.card-subtitle {
  font-size: .75rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  color: var(--primary);
  font-family: var(--heading-font);
}



/* Responsive adjustments */
@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
  .card-img {
    height: 220px; /* Shorter on mobile */
  }
}


/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 1.5rem 0;
    z-index: 1001;
    display: none; /* Hidden by default */
}

.cookie-consent-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-consent-banner p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-consent-banner a {
    color: var(--secondary);
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: 6rem 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-image {
    order: 2;
  }
  
  .about-text {
    order: 1;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .expertise-stats {
    flex-wrap: wrap;
  }
    
  .stat-item {
    flex: 0 0 33%;
  }
  
  .service-icon {
    width: 350px; /* Slightly smaller on medium screens */
    height: 260px;
  }
  
  /* Region icons responsive adjustments */
  .region-icon {
    width: 200px; /* Adjusted for medium screens */
    height: 200px;
  }
  
  .region-icon img {
    width: 100px; /* Adjusted for medium screens */
    height: 100px;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    padding: 5rem 2rem 2rem;
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
  }
  
  nav ul li {
    margin: 0 0 1.5rem 0;
  }
  
  .search-bar {
    margin-top: 2rem;
  }
  
  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .values-grid,
  .team-grid,
  .locations-grid {
    grid-template-columns: 1fr;
  }
  
  .resource-card {
    flex-direction: column;
  }
  
  .resource-image {
    flex: 0 0 200px;
    width: 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .brand-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
  }
    
  .brand-item {
    padding: 1rem;
  }
  
  .global-presence {
    flex-direction: column;
  }
  
  .region {
    margin-bottom: 2rem;
  }
  
  .region:last-child {
    margin-bottom: 0;
  }
    
  .stat-item {
    flex: 0 0 50%;
  }
  
  .service-icon {
    width: 100%; /* Full width on mobile */
    height: auto; /* Auto height to maintain aspect ratio */
    max-height: 300px; /* Maximum height on mobile */
    margin-right: 0; /* Remove margin on mobile */
    margin-bottom: 1.5rem; /* Add bottom margin instead */
  }
  
  .service-header {
    flex-direction: column; /* Stack vertically on mobile */
  }
  
  .logo img {
    height: 80px; /* Slightly smaller on mobile */
  }
  
  .footer-logo img {
    height: 70px; /* Slightly smaller on mobile */
  }
  
  /* Keep region icons large even on mobile */
  .region-icon {
    width: 140px;
    height: 140px;
  }
  
  .region-icon img {
    width: 85px;
    height: 85px;
  }
}

@media (max-width: 576px) {
  section {
    padding: 3rem 0;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
	margin: 1rem 0;
  }
  
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .benefit-item {
    flex-direction: column;
  }
  
  .benefit-icon {
    margin-bottom: 1rem;
  }
  
  .stat-item {
    flex: 0 0 100%;
  }
  
  .brand-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
  }
  
  .service-icon {
    max-height: 250px; /* Smaller max height on very small screens */
  }
  
  /* Still maintain good size on smallest screens */
  .region-icon {
    width: 130px;
    height: 130px;
  }
  
  .region-icon img {
    width: 80px;
    height: 80px;
  }
}