
   /* === Pilates Info Section === */
    .pilates-info {
      padding: 120px 0;
      background: linear-gradient(135deg, #f8f9f5 0%, #ffffff 100%);
      position: relative;
      overflow: hidden;
    }

    .pilates-info::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23c0d5ae" opacity="0.1"/></svg>') repeat;
      background-size: 50px 50px;
      opacity: 0.3;
      z-index: 1;
    }

    .pilates-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .pilates-content {
      padding: 0 20px;
    }

    .pilates-header {
      margin-bottom: 40px;
    }

    .pilates-badge {
      display: inline-block;
      background: var(--light-moss);
      color: var(--rifle-green);
      padding: 8px 20px;
      border-radius: 25px;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.5px;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .pilates-title {
      font-size: clamp(2.5rem, 4vw, 3.5rem);
      line-height: 1.2;
      margin-bottom: 30px;
      color: var(--rifle-green);
    }

    .pilates-intro {
      font-size: 18px;
      line-height: 1.8;
      color: var(--rifle-green);
      margin-bottom: 40px;
      opacity: 0.8;
    }

    .pilates-benefits {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-bottom: 50px;
    }

    .benefit-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      padding: 20px;
      background: var(--white);
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      transition: var(--transition);
    }

    .benefit-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .benefit-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--light-moss), var(--bone));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .benefit-icon i {
      font-size: 20px;
      color: var(--rifle-green);
    }

    .benefit-content h4 {
      font-size: 18px;
      margin-bottom: 8px;
      color: var(--rifle-green);
    }

    .benefit-content p {
      font-size: 14px;
      color: var(--rifle-green);
      opacity: 0.7;
      line-height: 1.6;
    }

    .pilates-quote {
      background: var(--white);
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      border-left: 4px solid var(--light-moss);
    }

    .pilates-quote blockquote {
      margin: 0;
    }

    .pilates-quote p {
      font-size: 18px;
      font-style: italic;
      color: var(--rifle-green);
      margin-bottom: 15px;
      line-height: 1.6;
    }

    .pilates-quote cite {
      font-size: 14px;
      color: var(--rifle-green);
      opacity: 0.7;
      font-style: normal;
      font-weight: 600;
    }

    .pilates-quote-2 {
      margin-top: 20px;
    }

    .pilates-visual {
      position: relative;
      padding: 0 20px;
    }

    .pilates-image-container {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .pilates-main-image {
      width: 100%;
      height: 800px;
      object-fit: cover;
      display: block;
    }

    .pilates-floating-elements {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .floating-element {
      position: absolute;
      width: 60px;
      height: 60px;
      background: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
      animation: floatAnimation 6s ease-in-out infinite;
    }

    .floating-element i {
      font-size: 24px;
      color: var(--rifle-green);
    }

    .element-1 {
      top: 20%;
      right: -30px;
      animation-delay: 0s;
    }

    .element-2 {
      top: 50%;
      left: -30px;
      animation-delay: 2s;
    }

    .element-3 {
      bottom: 20%;
      right: -30px;
      animation-delay: 4s;
    }

    @keyframes floatAnimation {
      0%, 100% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-15px);
      }
    }

    /* === Responsive Design === */
    
    /* Tablet styles (768px and below) */
    @media (max-width: 768px) {
      .pilates-info {
        padding: 80px 0;
      }

      .pilates-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
      }

      .pilates-content {
        padding: 0 15px;
        order: 2;
      }

      .pilates-visual {
        padding: 0 15px;
        order: 1;
      }

      .pilates-title {
        font-size: clamp(2rem, 5vw, 2.8rem);
      }

      .pilates-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
      }

      .pilates-main-image {
        height: 500px;
      }

      .floating-element {
        width: 50px;
        height: 50px;
      }

      .floating-element i {
        font-size: 20px;
      }
    }

    /* Mobile styles (480px and below) */
    @media (max-width: 480px) {
      .pilates-info {
        padding: 60px 0;
      }

      .pilates-wrapper {
        gap: 40px;
      }

      .pilates-content,
      .pilates-visual {
        padding: 0 10px;
      }

      .pilates-badge {
        font-size: 12px;
        padding: 6px 16px;
      }

      .pilates-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        margin-bottom: 20px;
      }

      .pilates-intro {
        font-size: 16px;
        margin-bottom: 30px;
      }

      .pilates-header {
        margin-bottom: 30px;
      }

      .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
      }

      .benefit-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 10px;
      }

      .benefit-icon i {
        font-size: 18px;
      }

      .benefit-content h4 {
        font-size: 16px;
        margin-bottom: 5px;
      }

      .benefit-content p {
        font-size: 13px;
      }

      .pilates-quote {
        padding: 20px;
      }

      .pilates-quote p {
        font-size: 16px;
        margin-bottom: 10px;
      }

      .pilates-quote cite {
        font-size: 13px;
      }

      .pilates-quote-2 {
        margin-top: 15px;
        padding: 20px;
      }

      .pilates-main-image {
        height: 350px;
      }

      .floating-element {
        width: 40px;
        height: 40px;
      }

      .floating-element i {
        font-size: 16px;
      }

      .element-1,
      .element-2,
      .element-3 {
        display: none; /* Hide floating elements on very small screens for better performance */
      }
    }

    /* Large mobile styles (between 481px and 600px) */
    @media (min-width: 481px) and (max-width: 600px) {
      .pilates-main-image {
        height: 400px;
      }

      .benefit-item {
        flex-direction: row;
        text-align: left;
      }

      .benefit-icon {
        margin: 0;
      }
    }