* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    
  }


  .header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(180deg, #2d2d2d 0%, #313131 100%);
  }

  .logo {
    width: 200px;
    height: 110px;
  }

  .navigation a {
    font-size: 1.1em;
    color: #d9d9d9;
    text-decoration: none;
    font-weight: 500;
    margin-left: 40px;
    transition: 0.3s;
  }

  .navigation a:hover {
    color: #FF6B00;
  }
  
  /* Hamburger Menu for Medium Screens */
  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
  }

  .menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #d9d9d9;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.blog-heading {
    padding-top: 100px;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: bold;
    color: #ffffff;
}

.blog-card {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.blog-card-image {
    width: 30%;
    object-fit: cover;
}

.blog-card-content {
    width: 70%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: white;
}

.blog-card-date {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-card-excerpt {
    flex-grow: 1;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #ddd;
}

.read-more-btn {
    background-color: #3b82f6;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    width: fit-content;
    align-self: center;
    transition: background-color 0.3s;
}

.read-more-btn:hover {
    background-color: #2563eb;
}

@media screen and (max-width: 720px) {
    .menu-toggle {
      display: flex;
    }
    
    .navigation {
      position: fixed;
      top: 0;
      right: -100%;
      width: 250px;
      height: 100vh;
      background-color: #2d2d2d;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: 0.5s;
      padding: 50px 0;
      z-index: 1000;
    }
    
    .navigation.active {
      right: 0;
      padding: 60px 5px 5px 10px;
    }
    
    .navigation a {
      margin: 15px 0;
      font-size: 1.2em;
      display: block;
    }
    
    .menu-toggle.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

    .header {
      padding: 10px 15px;
    }
    
    .logo {
      width: 130px;
      height: auto;
      z-index: 1001;
    }
  }