/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Georgia', serif;
  }
  
  body {
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
  }
  
  /* Header */
  .header {
    background-color: #004080;
    color: white;
    text-align: center;
    padding: 50px 20px;
  }
  
  .header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .header p {
    font-size: 1.2rem;
    font-style: italic;
  }
  
  /* Blog Container */
  .blog-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
  }
  
  /* Blog Posts */
  .blog-post {
    background: white;
    margin-bottom: 30px;
    padding: 25px;
    border-left: 5px solid #004080;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .post-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #004080;
  }
  
  .post-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
  }
  
  .post-content {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
  }
  
  .read-more {
    display: inline-block;
    padding: 8px 15px;
    background-color: #004080;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  .read-more:hover {
    background-color: #003060;
  }
  
  /* Footer */
  .footer {
    text-align: center;
    padding: 20px;
    background-color: #004080;
    color: white;
    margin-top: 50px;
  }
  .footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 40px 20px;
    text-align: center;
  }
  
  .footer h3 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #38bdf8;
  }
  
  .footer p {
    margin-bottom: 20px;
    font-size: 16px;
  }
  
  .footer .socials {
    margin-bottom: 20px;
  }
  
  .footer .socials a {
    color: #94a3b8;
    margin: 0 10px;
    font-size: 22px;
    transition: color 0.3s;
  }
  
  .footer .socials a:hover {
    color: #38bdf8;
  }
  
  .footer-bottom-text {
    font-size: 14px;
    color: #94a3b8;
  }
  
  .footer-bottom-text a {
    color: #38bdf8;
    text-decoration: none;
  }
  
  .footer-bottom-text a:hover {
    text-decoration: underline;
  }
  