/* Adult Feature Section CSS */

    .section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* First Section - Dark Blue */
    .section1 {
            display: flex;
      flex-wrap: wrap;
      gap: 30px;
      overflow: hidden;
    }

    .section1 .image-box {
      flex: 1;
      min-width: 300px;
    }

    .section1 .image-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .section1 .content-box {
      flex: 1;
      min-width: 300px;
      padding: 30px 40px;
    }

    .section1 h2 {
      font-size: 28px;
      color: #ff69b4;
      margin-bottom: 15px;
    }

    .section1 p {
      margin-bottom: 18px;
      font-size: 16px;
    }

    .btn-group {
      margin-top: 25px;
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .btn {
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: bold;
      text-decoration: none;
      text-align: center;
      min-width: 140px;
    }

    .btn-call {
      background: #ff1493;
      color: white;
    }

    .btn-wa {
      background: #25D366;
      color: white;
    }

    /* Second Section - Pink/Purple */
    .section2 {
      
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      overflow: hidden;
    }

    .section2 .content-box {
      flex: 1;
      min-width: 300px;
      padding: 30px 40px;
    }

    .section2 h2 {
      font-size: 26px;
      color: #ff69b4;
      margin-bottom: 15px;
    }

    .section2 .image-box {
      flex: 1;
      min-width: 300px;
    }

    .section2 .image-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .section1, .section2 {
        flex-direction: column;
      }
      
      .section1 .content-box,
      .section2 .content-box {
        padding: 25px 30px;
      }
    }

    .watermark {
      position: absolute;
      bottom: 10px;
      left: 10px;
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      font-style: italic;
    }