/* General Reset */
* {margin:0;padding:0;box-sizing:border-box;}
body {font-family:Arial,sans-serif;margin:0;padding:0;line-height:1.6;color:#333;background:#f4f4f4;}
header {text-align:center;padding:20px;background:#f4f4f4;}
header img.logo {max-width:100px;}
nav {display:flex;justify-content:center;background:#004080;padding:10px;}
nav a {color:white;margin:0 15px;text-decoration:none;font-weight:bold;}
nav a:hover,nav a.active {text-decoration:underline;}
.hero {background:url('../images/banner.jpg') no-repeat center center/cover;color:white;text-align:center;padding:80px 20px;}
.hero button {background:#ff6600;border:none;padding:15px 30px;color:white;font-size:18px;cursor:pointer;border-radius:8px;}
.hero button:hover {background:#e65c00;}
.about-hero {background:url('../images/about-banner.jpg') no-repeat center center/cover;height:250px;display:flex;align-items:center;justify-content:center;color:white;text-shadow:2px 2px 6px rgba(0,0,0,0.7);}
.about-hero h2 {font-size:2.5rem;background:rgba(0,0,0,0.5);padding:10px 25px;border-radius:10px;}
.about {max-width:900px;margin:40px auto;padding:20px;line-height:1.8;}
.about h2,.about h3 {color:#004080;margin-top:30px;}
.products-hero {background:url('../images/products-banner.jpg') no-repeat center center/cover;color:white;text-align:center;padding:60px 20px;text-shadow:2px 2px 6px rgba(0,0,0,0.7);margin-bottom:30px;}
.products-hero h2 {font-size:2.5rem;margin-bottom:10px;}
.products-wrapper {background:#f4f4f4;padding:40px 20px;max-width:1200px;margin:0 auto;}
.products-container {display:grid;grid-template-columns:repeat(3,1fr);gap:25px;}
.products-section {background:rgba(255,255,255,0.95);border-radius:10px;padding:20px;box-shadow:0 2px 10px rgba(0,0,0,0.1);text-align:center;transition:transform 0.3s ease;}
.products-section:hover {transform:translateY(-5px);}
.products-section h2 {color:#004080;margin:15px 0;font-size:1.3em;border-bottom:2px solid #3498db;padding-bottom:5px;}
.product-image {width:100%;height:180px;object-fit:cover;border-radius:8px;margin-bottom:12px;box-shadow:0 4px 8px rgba(0,0,0,0.1);transition:transform 0.3s ease;}
.product-image:hover {transform:scale(1.05);}
.product-list {list-style-type:disc;padding-left:20px;font-size:15px;color:#34495e;text-align:left;}
.product-list li {margin-bottom:8px;}
.back-home {text-align:center;margin-top:40px;}
.btn {background:#004080;color:white;padding:12px 25px;text-decoration:none;border-radius:6px;font-weight:bold;}
.btn:hover {background:#002d5a;}
footer {text-align:center;padding:20px;background:#f4f4f4;}
@media (max-width:900px){.products-container{grid-template-columns:repeat(2,1fr);}}
@media (max-width:600px){.products-container{grid-template-columns:1fr;}}
/* Clients Section */
.clients-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.clients-container {
  max-width: 1000px;
  margin: 0 auto;
}

.clients-intro {
  font-size: 1.1em;
  color: #555;
  margin: 20px auto 30px;
  max-width: 800px;
  line-height: 1.7;
}

.clients-section h2 {
  color: #004080;
  font-size: 2.2em;
  margin-bottom: 15px;
}

.clients-section h3 {
  color: #004080;
  font-size: 1.6em;
  margin: 40px 0 20px;
  border-bottom: 2px solid #3498db;
  display: inline-block;
  padding-bottom: 5px;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1em;
  color: #333;
}

.sectors-grid li {
  background: #f4f4f4;
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  font-weight: 500;
}

/* Responsive: Stack to single column on small screens */
@media (max-width: 600px) {
  .sectors-grid {
    grid-template-columns: 1fr;
    font-size: 1em;
  }

  .clients-intro, .clients-section h2 {
    font-size: 1em;
  }
}
/* Clients Section */
.clients-section {
  padding: 60px 20px;
  background: #fff;
}

.clients-container {
  max-width: 1200px;
  margin: 0 auto;
}

.clients-intro {
  font-size: 1.1em;
  color: #555;
  margin: 20px auto 40px;
  max-width: 900px;
  line-height: 1.7;
  text-align: center;
}

.clients-section h2 {
  color: #004080;
  font-size: 2.2em;
  text-align: center;
  margin-bottom: 20px;
}

/* Sectors Grid */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  list-style: none;
  padding: 0;
}

/* Sector Card */
.sector-card {
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  background: #f9f9f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.sector-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.sector-card h3 {
  font-size: 1.1em;
  color: #004080;
  margin: 15px 10px;
  font-weight: 600;
  line-height: 1.4;
}

/* Responsive Layout */
@media (max-width: 1024px) {
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .clients-section h2 {
    font-size: 1.8em;
  }

  .clients-intro {
    font-size: 1em;
  }
}
/* Contact Section */
.contact-section {
  padding: 60px 20px;
  background: #f8f9fa;
  text-align: center;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
  color: #004080;
  font-size: 2.2em;
  margin-bottom: 20px;
}

.contact-info {
  text-align: left;
  margin-bottom: 30px;
  color: #333;
  font-size: 1.1em;
  line-height: 1.8;
}

.contact-info a {
  color: #004080;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
}

.business-hours h3 {
  color: #004080;
  font-size: 1.5em;
  margin: 20px 0 15px;
}

.business-hours ul {
  list-style: none;
  padding: 0;
  text-align: left;
  font-size: 1.1em;
  line-height: 2;
  color: #333;
}

.business-hours li {
  font-weight: 500;
}

/* Responsive */
@media (max-width: 600px) {
  .contact-container {
    padding: 20px;
  }

  .contact-section h2 {
    font-size: 1.8em;
  }

  .contact-info, .business-hours {
    font-size: 0.95em;
  }
}html {
  scroll-behavior: smooth;
}
.contact-info { ... }
.contact-info a { ... }
.contact-info a:hover { ... }
.business-hours h3 { ... }
.business-hours ul { ... }
.business-hours li { ... }

/* Hero banner for Clients page */
#clients-hero {
  background: url('../images/clients-banner.jpg') no-repeat center center/cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.banner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 30px auto;
  border-radius: 12px;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
}

.banner-text h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.banner-text p {
  font-size: 1.1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .banner-text h2 {
    font-size: 1.5rem;
  }

  .banner-text p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .banner-text h2 {
    font-size: 1.2rem;
  }

  .banner-text p {
    font-size: 0.9rem;
  }
}
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f4f4f4;
}

/* Header */
header {
  text-align: center;
  padding: 20px;
  background: #f4f4f4;
}

header img.logo {
  max-width: 100px;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  background: #033

  padding: 10px;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover,
nav a.active {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background: #eaeaea;
  text-align: center;
  padding: 80px 20px;
}

.hero h2 {
  font-size: 2rem;
  font-weight: bold;
  color: orange;
}

/* Banner Section */
.banner {
  position: relative;
  text-align: center;
  margin: 40px 0;
}

.banner img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.banner-text h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.banner-text p {
  font-size: 1.1rem;
}

/* Contact Button */
.contact-btn-container .btn {
  background: #ff6600;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.contact-btn-container .btn:hover {
  background: #e65c00;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #f4f4f4;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  .banner-text h2 {
    font-size: 1.8rem;
  }

  .banner-text p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  nav {
    flex-direction: column;
  }

  .banner-text h2 {
    font-size: 1.5rem;
  }

  .banner-text p {
    font-size: 0.9rem;
  }

  .contact-btn-container .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}
/* ================= General Reset ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f4f4f4;
  scroll-behavior: smooth;
}

/* ================= Header ================= */
header {
  text-align: center;
  padding: 20px;
  background: #f4f4f4;
}

header img.logo {
  max-width: 100px;
}

header h1 {
  font-size: 1.8rem;
  color: #004080;
  margin-top: 10px;
}

/* ================= Navigation ================= */
nav {
  display: flex;
  justify-content: center;
  background: #004080;
  padding: 10px;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover,
nav a.active {
  text-decoration: underline;
}

/* ================= Hero Section ================= */
.hero {
  position: relative;
  background: url('../images/hero-placeholder.jpg') no-repeat center center/cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4); /* overlay for readability */
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero-text h2 {
  color: yellow;
  font-weight: bold;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.2rem;
}

/* ================= Banner Section ================= */
.banner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 30px auto;
  border-radius: 12px;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
}

.banner-text h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.banner-text p {
  font-size: 1.1rem;
}

/* ================= Contact Button ================= */
.contact-btn-container {
  text-align: center;
  margin: 40px 0;
}

.contact-btn-container .btn {
  background: #ff6600;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.contact-btn-container .btn:hover {
  background: #e65c00;
}

/* ================= Footer ================= */
footer {
  text-align: center;
  padding: 20px;
  background: #f4f4f4;
  font-size: 0.9rem;
}

/* ================= Responsive ================= */
@media (max-width: 900px) {
  .hero-text h2,
  .banner-text h2 {
    font-size: 1.8rem;
  }

  .banner-text p,
  .hero-text p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  nav {
    flex-direction: column;
  }

  .hero-text h2 {
    font-size: 1.5rem;
  }

  .banner-text h2 {
    font-size: 1.5rem;
  }

  .banner-text p,
  .hero-text p {
    font-size: 0.9rem;
  }

  .contact-btn-container .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}
/* ================= General Reset ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f4f4f4;
  scroll-behavior: smooth;
}

/* ================= Header ================= */
header {
  text-align: center;
  padding: 20px;
  background: #f4f4f4;
}

header img.logo {
  max-width: 100px;
}

header h1 {
  font-size: 1.8rem;
  color: #004080;
  margin-top: 10px;
}

/* ================= Navigation ================= */
nav {
  display: flex;
  justify-content: center;
  background: #004080;
  padding: 10px;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover,
nav a.active {
  text-decoration: underline;
}

/* ================= Hero Section ================= */
.hero {
  position: relative;
  background: url('../images/dark-hero.jpg') no-repeat center center/cover;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5); /* overlay for readability */
}

.hero-text {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.hero-text h2 {
  color: yellow;
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.5rem;
}

/* ================= Banner Section ================= */
.banner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 30px auto;
  border-radius: 12px;
  height: 400px;
  background: url('../images/banner-placeholder.jpg') no-repeat center center/cover;
  overflow: hidden;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4); /* overlay */
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1;
  padding: 10px 20px;
}

.banner-text h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.banner-text p {
  font-size: 1.1rem;
}

/* ================= Contact Button ================= */
.contact-btn-container {
  text-align: center;
  margin: 40px 0;
}

.contact-btn-container .btn {
  background: #ff6600;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.contact-btn-container .btn:hover {
  background: #e65c00;
}

/* ================= Footer ================= */
footer {
  text-align: center;
  padding: 20px;
  background: #f4f4f4;
  font-size: 0.9rem;
}

/* ================= Responsive ================= */
@media (max-width: 1024px) {
  .hero {
    height: 400px;
  }

  .hero-text h2 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 350px;
  }

  .hero-text h2 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 300px;
  }

  .hero-text h2 {
    font-size: 1.6rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  nav {
    flex-direction: column;
  }

  .contact-btn-container .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}
/* ================= Hero Section for Contact Page ================= */
.contact-hero {
  background: url('../images/contact-hero.jpg') no-repeat center center/cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-bottom: 40px;
  position: relative;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color: rgba(0,0,0,0.5);
}

.contact-hero .hero-text {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.contact-hero h2 {
  font-size: 2.5rem;
  color: #ffcc00;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 1.2rem;
}

/* ================= Contact Section ================= */
.contact-section {
  padding: 60px 20px;
  background: #f8f9fa;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Contact Info Styling */
.contact-info h3 {
  color: #004080;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 12px;
  line-height: 1.6;
  text-align: center;
}

.contact-info a {
  color: #004080;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Business Hours Styling */
.business-hours {
  margin-top: 30px;
}

.business-hours h3 {
  color: #004080;
  font-size: 1.6rem;
  margin-bottom: 15px;
  text-align: center;
}

.business-hours ul {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
  line-height: 2;
  text-align: center;
  color: #333;
}

.business-hours li {
  font-weight: 500;
  margin-bottom: 5px;
}

/* Back to Home Button */
.back-home {
  text-align: center;
  margin-top: 30px;
}

.back-home .btn {
  background: #004080;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.back-home .btn:hover {
  background: #002d5a;
}

/* ================= Responsive ================= */
@media (max-width: 768px) {
  .contact-container {
    padding: 30px 20px;
  }

  .contact-info h3,
  .business-hours h3 {
    font-size: 1.4rem;
  }

  .contact-info p,
  .business-hours ul {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-container {
    padding: 20px 15px;
  }

  .contact-hero h2 {
    font-size: 1.8rem;
  }

  .contact-hero p {
    font-size: 1rem;
  }

  .back-home .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
/* Contact Container with light blue background */
.contact-container {
  max-width: 800px;
  margin: 0 auto;
  background: #e0f7ff; /* light sky blue */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Optional: make banner text background slightly transparent sky blue too */
.contact-hero::before {
  background-color: rgba(0,123,255,0.4); /* transparent blue overlay */
}

/* Make text stand out on light blue */
.contact-info p,
.business-hours ul {
  color: #004080; /* dark blue text */
}

.contact-info a {
  color: #004080;
}

.back-home .btn {
  background: #004080; /* keep dark blue for buttons */
  color: white;
}
/* ================= Hero Section for Contact Page ================= */
.contact-hero {
  background: url('../images/contact-hero.jpg') no-repeat center center/cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-bottom: 40px;
  position: relative;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color: rgba(0,0,0,0.5); /* keep overlay dark for readability */
}

.contact-hero .hero-text {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.contact-hero h2 {
  font-size: 2.5rem;
  color: #ffcc00; /* yellow heading */
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 1.2rem;
}

/* ================= Contact Section ================= */
.contact-section {
  padding: 60px 20px;
  background: #f8f9fa; /* page background can remain light gray */
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  background: #e0f7ff; /* light blue instead of white */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Contact Info Styling */
.contact-info h3 {
  color: #004080;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 12px;
  line-height: 1.6;
  text-align: center;
  color: #004080; /* dark blue text for contrast */
}

.contact-info a {
  color: #004080;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Business Hours Styling */
.business-hours {
  margin-top: 30px;
}

.business-hours h3 {
  color: #004080;
  font-size: 1.6rem;
  margin-bottom: 15px;
  text-align: center;
}

.business-hours ul {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
  line-height: 2;
  text-align: center;
  color: #004080; /* dark blue text */
}

.business-hours li {
  font-weight: 500;
  margin-bottom: 5px;
}

/* Back to Home Button */
.back-home {
  text-align: center;
  margin-top: 30px;
}

.back-home .btn {
  background: #004080;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.back-home .btn:hover {
  background: #002d5a;
}

/* ================= Responsive ================= */
@media (max-width: 768px) {
  .contact-container {
    padding: 30px 20px;
  }

  .contact-info h3,
  .business-hours h3 {
    font-size: 1.4rem;
  }

  .contact-info p,
  .business-hours ul {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-container {
    padding: 20px 15px;
  }

  .contact-hero h2 {
    font-size: 1.8rem;
  }

  .contact-hero p {
    font-size: 1rem;
  }

  .back-home .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* ================= Hero Section for Ordering Page ================= */
.ordering-hero {
  background: url('../images/ordering-hero.jpg') no-repeat center center/cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-bottom: 40px;
  position: relative;
}

.ordering-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.ordering-hero .hero-text {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.ordering-hero h2 {
  font-size: 2.5rem;
  color: #ffcc00;
  margin-bottom: 10px;
}

.ordering-hero p {
  font-size: 1.2rem;
}

/* ================= Ordering Section ================= */
.ordering-section {
  padding: 40px 20px;
  background: #f8f9fa;
}

.ordering-section .container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  line-height: 1.7;
}

.ordering-section h2 {
  color: #004080;
  margin: 30px 0 15px;
  font-size: 1.8rem;
}

.ordering-section p {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

/* Process Steps */
.process-steps .step {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  border-left: 4px solid #004080;
}

.process-steps .step h3 {
  color: #004080;
  margin-bottom: 10px;
}

/* Benefits List */
.benefits ul {
  list-style: none;
  padding-left: 0;
}

.benefits li {
  padding: 8px 0;
  font-size: 1.1rem;
  color: #333;
}

.benefits li::before {
  content: "✓";
  color: #27ae60;
  font-weight: bold;
  margin-right: 8px;
}

/* Delivery Table */
.delivery-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 1.1rem;
}

.delivery-table th, .delivery-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.delivery-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.delivery-table th {
  background-color: #004080;
  color: white;
}

/* Call to Action */
.cta {
  text-align: center;
  margin-top: 40px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #004080;
}

/* Responsive */
@media (max-width: 768px) {
  .ordering-section .container {
    padding: 30px 20px;
    font-size: 0.95rem;
  }

  .ordering-hero h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .ordering-hero h2 {
    font-size: 1.8rem;
  }

  .delivery-table, .delivery-table th, .delivery-table td {
    font-size: 0.9rem;
    padding: 8px;
  }
}