body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #f9f9f9;
      color: #333;
    }

    .section {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 50px 10%;
      gap: 40px;
      flex-wrap: wrap;
    }

    .section:nth-child(even) {
      flex-direction: row-reverse;
      background: #fff;
    }

    .section img {
      max-width: 450px;
      width: 100%;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .text {
      flex: 1;
      min-width: 280px;
    }

    .text h2 {
      font-size: 4rem;
      margin-bottom: 15px;
      color: #00897b; /* Verde salud */
    }

    .text p {
      font-size: 2rem;
      line-height: 1.6;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .section {
        flex-direction: column;
        text-align: center;
      }

      .section:nth-child(even) {
        flex-direction: column;
      }

      .text h2 {
        font-size: 1.6rem;
      }
    }