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

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #222;
  padding: 20px;
}

/* Navbar Styles */
.navbar {
    background-color: #0066cc;
    padding: 10px 20px;
    border-radius: 0 0 12px 12px;
    /* rounded bottom only */
    position: fixed;
    /* stick it to the top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* keep it above other elements */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    /* optional shadow */
}

.menu-toggle {
  font-size: 24px;
  color: white;
  cursor: pointer;
  display: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  background: #004a99;
  padding: 8px 12px;
  border-radius: 6px;
}

.nav-links li a:hover {
  background-color: #003366;
}

.logo-bottom {
  color: white;
  text-align: center;
  font-size: 18px;
  margin-top: 10px;
  font-weight: bold;
}

/* Main Container */
.container {
  max-width: 600px;
  margin: auto;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

.keyword-list {
  list-style: none;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.keyword-list li a {
  display: block;
  padding: 14px 20px;
  background-color: #0066cc;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.keyword-list li a:hover {
  background-color: #004a99;
}

.ad-block p {
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 20px;
  color: #666;
}

.blog-section {
  margin-top: 20px;
}

.blog-section h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #444;
}

.blog-section p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: #555;
  line-height: 1.5;
}

.footer-links {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 25px;
}

.footer-links a {
  color: #0066cc;
  text-decoration: none;
  margin: 0 8px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Attorney Section Styling */
.attorney-section {
  background-color: #ffffff;
  padding: 30px 20px;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.attorney-section h2,
.attorney-section h3,
.attorney-section h4 {
  color: #003366;
  margin-bottom: 15px;
}

.attorney-section p {
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.attorney-section strong {
  color: #0066cc;
}

.attorney-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.attorney-section ul li {
  list-style-type: disc;
  margin-bottom: 10px;
  color: #333;
}

.article-img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 20px auto;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

/* Header (for .site-header) */
.site-header {
  background-color: #003366;
  color: white;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
  display: none;
}

.main-menu {
  display: flex;
  gap: 15px;
}

.main-menu a {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s;
}

.main-menu a:hover {
  background-color: #0055aa;
}

.main-menu.show {
  flex-direction: column;
  display: flex;
  width: 100%;
  margin-top: 10px;
}
.ads-btn {
    display: inline-block;
    padding: 10px 15px;
    background: #0077cc;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
}
.ads-btn:hover {
    background: #005fa3;
}

/* Footer Styling */
.site-footer {
  background-color: #f1f1f1;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  margin-top: 40px;
  color: #666;
}

.site-footer a {
  color: #003366;
  margin: 0 10px;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* About Page Styling */
.about-page {
  background-color: #ffffff;
  padding: 40px 20px;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  max-width: 900px;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-page h1 {
  font-size: 2.2rem;
  color: #003366;
  margin-bottom: 20px;
  text-align: center;
}

.about-page p {
  margin-bottom: 18px;
}

.about-page strong {
  color: #0066cc;
}

/* Navigation Styling */
header nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 15px;
  background-color: #003366;
}

header nav a {
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  background-color: #0055aa;
  transition: background 0.3s ease;
}

header nav a:hover {
  background-color: #0077cc;
}
/* Health & Medical Blog Page Styling */

.health-page {
  max-width: 960px;
  margin: 2rem auto;
  padding: 1rem;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  line-height: 1.8;
}

.health-page h1 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.health-page p {
  color: #333;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  text-align: justify;
}

.health-page strong {
  color: #007bff;
}

.health-page ul {
  margin-left: 1.5rem;
  list-style-type: disc;
  margin-bottom: 1rem;
}

.health-page li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .health-page {
    padding: 1rem 0.5rem;
  }

  .health-page h1 {
    font-size: 1.5rem;
  }

  .health-page p,
  .health-page li {
    font-size: 1rem;
  }
}

/* HOME INSURANCE PAGE STYLING */

.home-insurance-page {
  max-width: 960px;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.home-insurance-page h1 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 1rem;
  text-align: center;
}

.home-insurance-page p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1rem;
}

.home-insurance-page ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.home-insurance-page li {
  margin-bottom: 0.6rem;
  color: #444;
}

.home-insurance-page strong {
  color: #004080;
}

.home-insurance-page img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  border-radius: 6px;
}

/* Optional: Highlighted box/tip */
.home-insurance-page .tip-box {
  background-color: #e6f2ff;
  border-left: 4px solid #3399ff;
  padding: 1rem;
  margin: 1.5rem 0;
  border-radius: 6px;
  color: #003366;
}

/* Article Card Styling */
.article-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.article-card h1,
.article-card h2,
.article-card h3,
.article-card h4 {
  color: #2a2a2a;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.article-card p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.article-card ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.article-card ul li {
  list-style-type: disc;
  color: #333;
  padding: 0.3rem 0;
}

.article-card .meta {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 1rem;
}

.article-card {
  max-width: 100%;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  background: #f8f8f8; /* Optional: adds light background */
  border-radius: 8px;
  overflow: hidden;
}

.article-card img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 6px;
  object-fit: cover;
}

  
/* DEFAULT MENU STYLES (DESKTOP) */
.main-menu {
  display: flex;
  gap: 15px;
}

/* TOGGLE BUTTON (VISIBLE ON MOBILE) */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* RESPONSIVE MENU: HIDE MENU ON SMALL SCREENS */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-menu {
    display: none;
    flex-direction: column;
    background-color: #333;
    padding: 10px;
  }

  .main-menu a {
    padding: 10px;
    border-bottom: 1px solid #555;
    color: white;
  }

  .ad-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ff6a00, #ff9500);
    color: white;
    font-size: 1.1em;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
}

.ad-btn:hover {
    background: linear-gradient(45deg, #ff9500, #ff6a00);
    transform: scale(1.05);
    box-shadow: 0px 6px 14px rgba(0,0,0,0.2);
}


  /* VISIBLE WHEN .active CLASS IS TOGGLED */
  .main-menu.active {
    display: flex;
  }
}
/* Bidvertiser Ad Container */
.ad-container {
    margin: 20px 0;
}

/* Make ad images responsive */
.ad-container img {
    max-width: 100% !important;
    height: auto !important;
}

#ntv_2101302 {
    min-width: 350px;
    min-height: 250px;
    display: block;
}

/* Desktop: 4 ads per row */
@media (min-width: 992px) {
    .ad-container>div {
        width: 25% !important;
        display: inline-block !important;
        vertical-align: top !important;
    }
}

/* Tablet: 2 ads per row */
@media (min-width: 600px) and (max-width: 991px) {
    .ad-container>div {
        width: 50% !important;
        display: inline-block !important;
        vertical-align: top !important;
    }
}

/* Mobile: 1 ad per row */
@media (max-width: 599px) {
    .ad-container>div {
        width: 100% !important;
        display: block !important;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

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

  .keyword-list li a {
    font-size: 0.95rem;
  }

  .blog-section h2 {
    font-size: 1.1rem;
  }

  .blog-section p {
    font-size: 0.9rem;
  }
}

