/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f8ff;
    color: #1c2e4a;
    line-height: 1.7;
    padding: 20px;
  }
  
  /* Header */
  .blog-header {
    background-color: #2874a6;
    color: white;
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .blog-hero {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .blog-hero img {
    width: 100%;
    max-width: 850px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Main Content */
  .blog-content {
    max-width: 850px;
    margin: auto;
    padding: 0 15px;
  }
  
  .blog-content h2 {
    color: #2c5e9e;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.6rem;
  }
  
  .blog-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
  }
  
  /* Contact Info Box */
  .contact-info {
    background-color: #e0efff;
    padding: 20px;
    border-left: 5px solid #2874a6;
    border-radius: 8px;
    margin-top: 40px;
  }
  
  .contact-info a {
    color: #2874a6;
    text-decoration: none;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  
  .back-button {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 16px;
    background-color: #2874a6;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }
  
  .back-button:hover {
    background-color: #1e5d8c;
  }
  