/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.logo {
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 10;
    padding: 10px;
    text-align: center; 
}

.navbar {
    background: #000080; /* Navy blue */
    color: white;
    padding: 10px;
    margin-top: 80px;
}

.navbar a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    display: inline-block;
}

.hero {
    width: 100%;
    height: 300px;
    object-fit: cover;
    position: relative;
}

.content {
    max-width: 800px;        
    margin: 40px auto;       
    padding: 0 24px;         
    text-align: left;         
}

.pagination {
    text-align: center;
    margin: 20px 0;
   display: block;
   width: 100%;
}

.pagination a {
    margin: 0 10px;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
}

.page-wrapper {
  max-width: 900px;      /* max width of your page content */
  margin: 0 auto;        /* centers the wrapper horizontally */
  padding: 0 20px;       /* optional padding to avoid edge flush */
  box-sizing: border-box;
  text-align: left;      /* keeps text left aligned */
}

.subscribe {
     text-align: center;
     margin-top: 40px;
     margin-bottom: 20px;       
    background: #f0f0f0;
}

.subscribe form {
  display: inline-block;
  text-align: center;
}

.subscribe input[type="text"],
.subscribe input[type="email"] {
  margin: 5px 10px;
  padding: 8px;
  font-size: 16px;
}

.subscribe button {
  padding: 9px 16px;
  font-size: 16px;
  cursor: pointer;
}

.footer {
    background: #333;
    color: white;
    padding: 10px;
    text-align: center;
}

.footer a {
    color: white;
    margin: 0 10px;
}

/* Add this CSS to your stylesheet */
.footer-links {
     text-align: center;
     margin-top: 40px;
     margin-bottom: 20px;
    font-size: 12px;
    background: none; /* Ensures no background color */
}

.footer-links a {
  color: #333;          /* Use your preferred link color */
  text-decoration: none;
  margin: 0 8px;
  font-weight: normal;
  background: none;
}

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


 blockquote {
      border-left: 4px solid #ccc;
      margin: 1rem 0;
      padding-left: 1rem;
      color: #555;
      font-style: italic;
      background-color: #f9f9f9;
 }
  .stat {
      background-color: #e0f0ff;
      border-left: 5px solid #007acc;
      margin: 1rem 0;
      padding: 1rem;
      font-weight: bold;
      color: #004080;
 }

h1 {
    color: #000080; /* Navy blue for headings */
}

h2 {
    color: #000080; /* Navy blue for headings */
}

h3 {
    color: #000080; /* Navy blue for headings */
}
/* Existing styles remain unchanged, add or replace table-related styles */

/* Table styling */
.content table {
    width: 80%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #f0f0f0; /* Debug: Light gray background to confirm CSS loads */
}

.content table th {
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #000080; /* Navy blue for header */
    color: white;
}

.content table td {
    padding: 10px;
    border: 1px solid #ddd;
}

.content table tr:nth-child(even) {
    background-color: #f2f2f2; /* Light gray for even rows */
}

.content table tr:nth-child(odd) {
    background-color: #ffffff; /* White for odd rows */
}


