.section-wrapper {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f9f9f9;
      padding: 4rem 2rem;
    }

    .content-box {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      background: white;
      border-radius: 1rem;
      padding: 3rem;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    }

    .left-text {
      max-width: 500px;
    }

    .left-text h2 {
      font-weight: 700;
      font-size: 2.5rem;
    }

    .left-text p {
      font-size: 1.1rem;
      color: #666;
      margin: 1rem 0 2rem;
    }

    .btn-yellow {
      background-color: #feda57;
      color: #000;
      font-weight: 600;
      border-radius: 30px;
      padding: 0.75rem 1.5rem;
    }

    .image-wrapper {
      position: relative;
      text-align: center;
    }

    .insta-logo {
      position: absolute;
      top: 10px;
      left: 50%;
      transform: translateX(-50%);
      width: 40px;
    }

    @media (max-width: 992px) {
      .content-box {
        flex-direction: column;
        text-align: center;
      }

      .image-wrapper {
        margin-top: 2rem;
      }
    }

    @media (max-width: 768px) {
      .section-wrapper {
        padding: 2rem 0.5rem;
      }
      .content-box {
        padding: 1.5rem 0.5rem;
        border-radius: 0.5rem;
      }
      .left-text h2 {
        font-size: 1.5rem;
      }
      .left-text p {
        font-size: 1rem;
      }
      .btn-yellow {
        padding: 0.5rem 1rem;
        font-size: 1rem;
      }
      .image-wrapper {
        margin-top: 1rem;
      }
      .insta-logo {
        width: 28px;
      }
    }

    @media (max-width: 480px) {
      .section-wrapper {
        padding: 1rem 0.2rem;
      }
      .content-box {
        padding: 1rem 0.2rem;
        flex-direction: column;
      }
      .left-text h2 {
        font-size: 1.1rem;
      }
      .left-text p {
        font-size: 0.95rem;
      }
      .btn-yellow {
        padding: 0.4rem 0.7rem;
        font-size: 0.95rem;
      }
      .image-wrapper {
        margin-top: 0.5rem;
      }
      .insta-logo {
        width: 20px;
      }
    }