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

.blog-section {
  padding: 60px 20px;
  background: #ffffff;
}

.blog-container {
  max-width: 1100px;
  margin: 0 auto;
  font-family: "Poppins", Arial, sans-serif;
  color: #222222;
  line-height: 1.8;
}

/* =========================
   TYPOGRAPHY
========================= */

.blog-container h1 {
  font-size: 42px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111111;
}

.blog-container h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 45px;
  margin-bottom: 15px;
  color: #75080A;
}

.blog-container h3 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 12px;
  color: #333333;
}

.blog-container h4 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
  color: #75080A;
}

.blog-container p {
  font-size: 17px;
  margin-bottom: 16px;
  color: #444444;
}

.blog-container strong {
  color: #75080A;
}

.blog-container a {
  color: #75080A;
  text-decoration: none;
  transition: 0.3s ease;
}

.blog-container a:hover {
  color: #5d0507;
}

/* =========================
   INTRO BOX
========================= */

.blog-container .intro {
  background: #fff7f7;
  border-left: 5px solid #75080A;
  padding: 25px;
  border-radius: 10px;
  font-size: 18px;
  margin-bottom: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* =========================
   LISTS
========================= */

.blog-container ul {
  margin: 15px 0 20px 25px;
  padding: 0;
}

.blog-container ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #444444;
}

/* =========================
   TABLE
========================= */

.table-wrapper {
  overflow-x: auto;
  margin: 30px 0;
}

.blog-container table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}

.blog-container table th {
  background: #75080A;
  color: #ffffff;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
}

.blog-container table td {
  border: 1px solid #e5e5e5;
  padding: 14px;
  font-size: 15px;
  color: #444444;
}

.blog-container table tr:nth-child(even) {
  background: #fafafa;
}

.blog-container table tr:hover {
  background: #fff5f5;
}

/* =========================
   CHOICE BOXES
========================= */

.choice-box {
  background: #fff8f8;
  border: 1px solid #e8d0d1;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 25px;
  transition: 0.3s ease;
}

.choice-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(117, 8, 10, 0.08);
}

.choice-box h3 {
  color: #75080A;
  margin-top: 0;
}

/* =========================
   CTA SECTION
========================= */

.cta-box {
  margin-top: 50px;
  padding: 35px;
  background: #75080A;
  border-radius: 15px;
  text-align: center;
}

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

.cta-box p {
  color: #ffffff;
  font-size: 17px;
}

.cta-box ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.cta-box ul li {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 16px;
}

.cta-box ul li::before {
  content: "✓ ";
  font-weight: bold;
}

.cta-box a {
  display: inline-block;
  margin: 20px 0;
  padding: 14px 28px;
  background: #ffffff;
  color: #75080A;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-box a:hover {
  background: #f4e6e7;
  transform: translateY(-2px);
}

/* =========================
   BLOCKQUOTE (Optional)
========================= */

.blog-container blockquote {
  background: #fff7f7;
  border-left: 5px solid #75080A;
  padding: 20px;
  margin: 25px 0;
  font-style: italic;
  border-radius: 8px;
}

/* =========================
   IMAGE STYLING
========================= */

.blog-container img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 25px 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .blog-container h1 {
    font-size: 36px;
  }

  .blog-container h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 40px 15px;
  }

  .blog-container h1 {
    font-size: 30px;
  }

  .blog-container h2 {
    font-size: 24px;
  }

  .blog-container h3 {
    font-size: 21px;
  }

  .blog-container h4 {
    font-size: 18px;
  }

  .blog-container p,
  .blog-container li {
    font-size: 15px;
  }

  .blog-container table th,
  .blog-container table td {
    padding: 12px;
    font-size: 14px;
  }

  .cta-box {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .blog-container h1 {
    font-size: 26px;
  }

  .blog-container h2 {
    font-size: 22px;
  }

  .blog-container .intro {
    padding: 20px;
    font-size: 16px;
  }
}

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

