/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    padding: 20px;
    color: #333;
  }
  
  header {
    background: linear-gradient(to right, #005792, #00c6ff);
    color: #ffffff;
    padding-top: 30px;
    padding-bottom: 15px;
    text-align: center;
  }
  
  header h1 {
    margin: 0;
    font-size: 2.5rem;
  }
  
  .post-content {
    background: #ffffff;
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .post-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
  }
  
  .post-content h2 {
    color: #005792;
    margin-bottom: 10px;
  }
  
  .post-content p,
  .post-content ul {
    margin-bottom: 16px;
  }
  
  .post-content a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .post-content a:hover {
    color: #005792;
    text-decoration: underline;
  }
  
  ul {
    list-style-position: inside;
  }
  
  content strong {
    color: #005792;
  }
  
  @media (min-width: 768px) {
    body {
      padding: 40px;
    }
  
    .post-content {
      margin: 20px auto;
      max-width: 80%;
    }
  }
  
  /* Additional styles for better appearance */
  button,
  input[type="submit"] {
    background: #007bff;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  button:hover,
  input[type="submit"]:hover {
    background: #005792;
  }
  
  input[type="text"],
  textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
  }
  
  footer {
    text-align: center;
    padding: 20px;
    background: #005792;
    color: #fff;
    margin-top: 20px;
  }
  
