/* ================= GLOBAL RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ================= CONTAINER ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ================= HEADER ================= */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.25);
 border: 1px solid rgba(255, 255, 255, 0.1);
border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  z-index: 100;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  padding: 0 25px;
  flex-wrap: wrap;
}

.logo img {
  height: 58px;
}

/* ================= NAVIGATION ================= */
nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

nav a {
  color: #255c64;
  font-size: 16px;
  font-weight: 600;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
 bottom: -6px;
width: 0;
  height: 2px;
  background: linear-gradient(90deg, #144a9a, #8b0000);
  transition: width 0.3s ease;
}

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

/* ================= BUTTON ================= */
.btn-header {
  background: linear-gradient(135deg, #8b0000, #c62828);
  color: white;
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(139, 0, 0, 0.35);
  transition: 0.3s ease;
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 0, 0, 0.45);
}

.menu-toggle {
  display: none;
}
/* ================= BANNER / HERO ================= */
/* ================= BANNER / HERO ================= */
.banner-section.blog-hero {
  width: 100%;
  height: 800px;
background: url('../images/blog banner img.png') center/cover no-repeat;
osition: relative;
margin-top: 85px;
}
.blog-section {
  padding: 70px 20px;
  background: #f8faf7;
  font-family: Arial, sans-serif;
  color: #222;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.blog-image {
  width: 100%;
  margin: 25px 0;
  overflow: hidden;
  border-radius: 14px;
}

.blog-image img {
  display: block;
  width: 100%;
  height: 680px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .blog-image img {
    height: 260px;
  }
}

.blog-content {
  background: #ffffff;
  padding: 45px;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.blog-content h1 {
  font-size: 38px;
  line-height: 1.25;
  color: #123b24;
  margin-bottom: 25px;
}

.blog-content h2 {
  font-size: 28px;
  color: #176b3a;
  margin-top: 45px;
  margin-bottom: 15px;
}

.blog-content h3 {
  font-size: 21px;
  color: #123b24;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #444;
}

.blog-content ul {
  margin: 15px 0 30px;
  padding-left: 22px;
}

.blog-content ul li {
  font-size: 17px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 25px;
}

.benefit-card {
  background: #f5fff8;
  border: 1px solid #d8eadf;
  padding: 25px;
  border-radius: 14px;
  transition: 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 22px rgba(23, 107, 58, 0.12);
}

.factor-box {
  background: #ffffff;
  border-left: 5px solid #176b3a;
  padding: 20px 25px;
  margin-bottom: 18px;
  border-radius: 12px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 25px;
}

.location-grid span {
  background: #123b24;
  color: #ffffff;
  padding: 18px;
  text-align: center;
  border-radius: 12px;
  font-weight: 600;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 25px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
}

table th {
  background: #176b3a;
  color: #ffffff;
  padding: 16px;
  text-align: left;
}

table td {
  padding: 15px;
  border: 1px solid #ddd;
  font-size: 16px;
}

table tr:nth-child(even) {
  background: #f3f8f5;
}

.cta-box {
  margin-top: 50px;
  background: linear-gradient(135deg, #123b24, #176b3a);
  color: #ffffff;
  text-align: center;
  padding: 45px 25px;
  border-radius: 18px;
}

.cta-box h2 {
  color: #ffffff;
  margin-top: 0;
}

.cta-box p {
  color: #f1f1f1;
  font-size: 18px;
}

.cta-box a {
  display: inline-block;
  margin-top: 15px;
  background: #ffffff;
  color: #176b3a;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
}

.cta-points {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.cta-points span {
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 16px;
  border-radius: 25px;
  font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .blog-section {
    padding: 40px 12px;
  }

  .blog-content {
    padding: 25px;
  }

  .blog-content h1 {
    font-size: 28px;
  }

  .blog-content h2 {
    font-size: 23px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 35px 18px;
  }
}
/* ================= FOOTER ================= */
.footer {
  background: #292929;
  color: #ffffff;
  padding-top: 55px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 20px 45px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: #fff7c5;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.85);
  transition: 0.3s;
}
.footer-col ul li a:hover {
color: #fff7c5;
padding-left: 4px;
}

.footer-logo {
width: 140px;
  margin-bottom: 15px;
}

.footer-about {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
}

.footer-info li {
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
 padding: 18px 10px;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.15);
}
