  @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
  
  body{
    font-family: "Roboto", Sans-serif;
    line-height: 1.5;
    margin: 0;
    background:#f7f7f9;
    padding: 0;
    overflow-x: hidden;
    height: 100%;
  }

  .section {
    display: flex;
    gap: 2rem;
    align-items: center;
    width: 100%;
    position: relative;
    transition: all 0.8s ease;

  }

   .section-title {
        color: #2e7d32;
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    section.in-view { opacity:1; transform: none; }

  .fade-up   { transform: translateY(30px); }
  .fade-down { transform: translateY(-30px); }
  .fade-left { transform: translateX(-30px); }
  .fade-right{ transform: translateX(30px); }
  .zoom-in   { transform: scale(0.8); }
  .zoom-out  { transform: scale(1.2); }
  .rotate    { transform: rotate(-50deg); }