body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.7;
    margin: 0;
    padding: 0;
  }
  
  .navbar {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  
  .logo {
    height: 50px;
  }
  
  .menu {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
  }
  
  .menu li a:hover,
  .menu li a.active {
    color: #28a745;
  }
  
  #blog {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
  }
  
  #blog h1 {
    font-size: 38px;
    color: #28a745;
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .blog-toc {
    background: #f8f8f8;
    border-left: 4px solid #28a745;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 10px;
  }
  
  .blog-toc ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .blog-toc ul li a {
    color: #28a745;
    text-decoration: none;
    font-weight: 600;
  }
  
  #blog h2 {
    font-size: 30px;
    color: #fff;
    background-color: #28a745;
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 50px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  #blog h3 {
    font-size: 22px;
    margin-top: 40px;
    color: #28a745;
    font-family: 'Playfair Display', serif;
    text-align: center;
  }
  
  #blog p,
  #blog li {
    font-size: 16px;
    color: #444;
    margin-bottom: 15px;
  }
  
  #blog ul {
    padding-left: 20px;
    margin-bottom: 30px;
  }
  
  #blog img {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .testimonios-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin-top: 30px;
  }
  
  blockquote {
    flex: 1 1 calc(50% - 20px);
    background: #f1f1f1;
    border-left: 5px solid #28a745;
    padding: 25px;
    border-radius: 12px;
    font-style: italic;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
  }
  
  blockquote::before {
    content: "\201C";
    font-size: 60px;
    position: absolute;
    top: -10px;
    left: 15px;
    color: #28a745;
    opacity: 0.2;
  }
  
  blockquote footer {
    margin-top: 15px;
    text-align: right;
    font-style: normal;
    color: #28a745;
    font-weight: bold;
  }
  
  @media (max-width: 768px) {
    .testimonios-container {
      flex-direction: column;
    }
  
    blockquote {
      flex: 1 1 100%;
    }
  }
  
  .copyright-footer {
    background: #111;
    color: #ccc;
    text-align: center;
    padding: 20px 10px;
    font-size: 14px;
    margin-top: 60px;
  }
  
  .copyright-footer p {
    margin: 0;
  }

  
  
  