•⁠  ⁠{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
  }
  
  body {
    background-color: #fafafa;
    color: #333;
  }
  
  /* HEADER */
  header {
    background-color: #fff;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header h1 {
    color: #e11d48;
    font-size: 2rem;
  }
  
  nav a {
    margin-left: 1rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.2s;
  }
  
  nav a:hover {
    color: #e11d48;
  }
  
  /* HERO SECTION */
  .hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(to bottom right, #fff, #ffe4e6);
  }
  
  .hero h2 {
    font-size: 2.5rem;
    color: #e11d48;
    margin-bottom: 1rem;
  }
  
  .hero p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: #555;
  }
  
  /* BUTTONS */
  .buttons a {
    display: inline-block;
    margin: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .buttons .primary {
    background-color: #e11d48;
    color: white;
  }
  
  .buttons .primary:hover {
    background-color: #be123c;
  }
  
  .buttons .secondary {
    border: 2px solid #e11d48;
    color: #e11d48;
  }
  
  .buttons .secondary:hover {
    background-color: #ffe4e6;
  }
  
  /* CARDS */
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 1.5rem;
  }
  
  .card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .card h3 {
    color: #e11d48;
    margin-bottom: 0.75rem;
  }
  
  /* FOOTER */
  footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: #666;
    background-color: #fff;
    border-top: 1px solid #eee;
    margin-top: 3rem;
  }