/* ================= 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 DETAIL SECTION ================= */

.blog-detail-wrapper {
  background: #ffffff;
  padding: 35px 15px 70px;
}

.blog-container {
  max-width: 1180px;
  margin: 0 auto;
}

.blog-content {
  width: 100%;
}

/* Top blog image */
.blog-banner {
  width: 100%;
  height: 850px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  display: block;
  margin-bottom: 18px;
}

/* Date and category */
.blog-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 35px;
  color: #075f36;
  font-size: 15px;
  font-weight: 500;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* SEO content wrapper */
.vp-seo-section {
  padding: 0;
  background: transparent;
  font-family: Arial, Helvetica, sans-serif;
}

.vp-container {
  max-width: 1180px;
  margin: 0 auto;
}

/* Main content blocks - no green box */
.vp-content-card {
  background: transparent;
  padding: 0 0 34px;
  margin-bottom: 34px;
  border-radius: 0;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid #e5e5e5;
}

.vp-content-card h2,
.vp-cta-box h2,
.vp-social-box h2 {
  font-size: 30px;
  color: #075f36;
  margin: 0 0 18px;
  line-height: 1.3;
  font-weight: 700;
}

.vp-content-card h3 {
  font-size: 21px;
  color: #075f36;
  margin: 22px 0 10px;
  font-weight: 700;
}

.vp-content-card p {
  font-size: 16px;
  color: #222222;
  line-height: 1.85;
  margin: 0 0 15px;
}

/* Lists */
.vp-content-card ul {
  margin: 15px 0;
  padding-left: 0;
  list-style: none;
}

.vp-content-card ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #222222;
  line-height: 1.7;
}

.vp-content-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #075f36;
  font-weight: 700;
}

/* Two column content */
.vp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 34px;
  margin-top: 22px;
}

/* Remove inner green boxes */
.vp-feature {
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
}

.vp-feature h3 {
  margin-top: 0;
  color: #075f36;
}

.vp-feature p {
  margin-bottom: 0;
}

/* Table */
.vp-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 25px 0;
}

.vp-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
  background: #ffffff;
  border: 1px solid #e4e4e4;
}

.vp-table-wrap th {
  background: #075f36;
  color: #ffffff;
  padding: 16px;
  font-size: 16px;
  text-align: left;
}

.vp-table-wrap td {
  padding: 15px 16px;
  border-bottom: 1px solid #e7e7e7;
  color: #222222;
  font-size: 16px;
}

.vp-table-wrap tr:nth-child(even) {
  background: #f7fbf8;
}

/* CTA section */
.vp-cta-box {
  text-align: center;
  padding: 42px 30px;
  border-radius: 16px;
  background: #f4faf6;
  border: 1px solid #d5ecdf;
  margin-bottom: 32px;
}

.vp-cta-box p {
  font-size: 18px;
  color: #333333;
  margin-bottom: 22px;
}

.vp-cta-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #075f36;
  color: #ffffff;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 700;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.vp-cta-btn:hover {
  background: #0a7a45;
  transform: translateY(-2px);
}

.vp-checks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 25px;
}

.vp-checks span {
  background: #ffffff;
  padding: 15px;
  border-radius: 12px;
  color: #075f36;
  font-weight: 700;
  border: 1px solid #e3eee7;
}

/* Social section */
.vp-social-box {
  text-align: center;
  padding: 34px 25px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e6eee9;
}

.vp-social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.vp-social-links a {
  padding: 12px 24px;
  border-radius: 30px;
  background: #f4f7f5;
  color: #075f36;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.vp-social-links a:hover {
  background: #075f36;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 900px) {
  .blog-banner {
    height: 420px;
  }

  .vp-grid,
  .vp-checks {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-detail-wrapper {
    padding: 25px 12px 50px;
  }

  .blog-banner {
    height: 300px;
    border-radius: 10px;
  }

  .blog-meta {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
    font-size: 14px;
  }

  .vp-content-card {
    padding-bottom: 28px;
    margin-bottom: 28px;
  }

  .vp-content-card h2,
  .vp-cta-box h2,
  .vp-social-box h2 {
    font-size: 24px;
  }

  .vp-content-card h3 {
    font-size: 19px;
  }

  .vp-content-card p,
  .vp-content-card ul li,
  .vp-table-wrap td,
  .vp-table-wrap th {
    font-size: 15px;
  }

  .vp-grid,
  .vp-checks {
    grid-template-columns: 1fr;
  }

  .vp-cta-box,
  .vp-social-box {
    padding: 28px 18px;
  }

  .vp-social-links {
    flex-direction: column;
  }
}






  
    

   



/* ================= 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);
}

