
  :root {
    --green: #3e7a59;
    --green-light: #e6f2eb;
    --red: #b94545;
    --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --max-width: 800px;
  }

  body {
    font-family: var(--font-body);
    background-color: #fefcf9;
    color: #2e2e2e;
    padding: 1rem 1.5rem;
    margin: 0 auto;
    max-width: var(--max-width);
    line-height: 1.7;
  }

  .blog-logo {
    text-align: center;
    margin-top: 2.5rem;
  }

  .blog-logo img {
    height: 90px;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .blog-logo img:hover {
    transform: rotate(2deg) scale(1.03);
  }

  header {
    background-color: var(--green);
    color: white;
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  header h1 {
    margin: 0;
    font-size: 2rem;
    letter-spacing: 0.5px;
  }

  .blog-list {
    margin-top: 2.5rem;
  }

  .blog-item {
    background-color: #ffffff;
    border: 1px solid var(--green-light);
    border-left: 6px solid var(--green);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    transition: 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  }

  .blog-item:hover {
    background-color: var(--green-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  }

  .blog-item a {
    text-decoration: none;
    color: var(--green);
    font-weight: 600;
    font-size: 1.15rem;
    display: block;
  }

  .blog-item a::after {
    content: " →";
    transition: margin-left 0.3s;
  }

  .blog-item a:hover::after {
    margin-left: 5px;
  }

  footer {
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 4rem;
    font-size: 0.9rem;
    background: var(--green);
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  }

  footer small {
    display: block;
    margin-top: 0.5rem;
    font-style: italic;
    color: #f9f9f9;
  }

  @media (max-width: 600px) {
    .blog-item {
      padding: 1rem;
    }

    header h1 {
      font-size: 1.5rem;
    }
  }

