    /* Box sizing for all elements */
    *, *::before, *::after {
      box-sizing: border-box;
    }

    .studio-hero {
      position: relative;
      background: url('studio-cleaning.jpg') no-repeat center center/cover;
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .studio-hero .content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 600px;
      padding: 20px;
      background: linear-gradient(90deg, rgba(18, 11, 83, 0.85) 0%, rgba(54, 100, 155, 0.75) 100%);
      border-radius: 30px;
      width: 80%;
    }

    .studio-hero h1 {
      color: #fff;
      font-size: 48px;
      margin-bottom: 10px;
    }

    .studio-hero p {
      color: #f0f0f0;
      font-size: 20px;
      line-height: 1.5;
    }

    /* Responsive hero */
    @media (max-width: 992px) {
      .studio-hero {
        height: 260px;
      }

      .studio-hero .content {
        padding: 15px;
        width: 90%;
      }

      .studio-hero h1 {
        font-size: 36px;
      }

      .studio-hero p {
        font-size: 18px;
      }
    }

    @media (max-width: 768px) {
      .studio-hero {
        height: 220px;
      }

      .studio-hero h1 {
        font-size: 30px;
      }

      .studio-hero p {
        font-size: 16px;
      }
    }

    @media (max-width: 480px) {
      .studio-hero {
        height: 180px;
      }

      .studio-hero .content {
        padding: 10px;
        width: 95%;
        border-radius: 20px;
      }

      .studio-hero h1 {
        font-size: 24px;
      }

      .studio-hero p {
        font-size: 14px;
      }
    }

    .studio-details {
      padding: 60px 20px;
      background: #f8f9fb;
      color: #333;
      font-family: 'Segoe UI', sans-serif;
    }

    .studio-details .container {
      max-width: 1000px;
      margin: auto;
    }

    .studio-details h2 {
      font-size: 32px;
      margin-bottom: 20px;
      color: #0a3d62;
      text-align: center;
    }

    .studio-details .description {
      font-size: 18px;
      line-height: 1.7;
      margin-bottom: 20px;
      text-align: justify;
    }

    .pricing-title {
      font-size: 26px;
      margin-top: 40px;
      margin-bottom: 20px;
      text-align: center;
      color: #0a3d62;
    }

    .pricing-wrapper {
      margin-top: 30px;
      overflow-x: auto; /* horizontal scroll on small screens */
      -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
      text-align: center;
    }

    .pricing-table table {
      width: 100%;
      border-collapse: collapse;
      background: #fff;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      min-width: 300px; /* prevent too narrow */
    }

    .pricing-table th,
    .pricing-table td {
      padding: 15px;
      text-align: center;
      border: 1px solid #ddd;
      font-size: 16px;
    }

    .pricing-table th {
      background-color: #1e3799;
      color: #fff;
      font-weight: 600;
    }

    /* Responsive table for mobile */
    @media (max-width: 768px) {
      .studio-details h2 {
        font-size: 26px;
      }

      .pricing-table thead {
        display: none; /* hide header row */
      }

      .pricing-table tbody tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 10px 0;
        background: #fff;
      }

      .pricing-table tbody td {
        display: block;
        text-align: left;
        padding-left: 50%;
        position: relative;
        border: none;
        border-bottom: 1px solid #ddd;
        font-size: 16px;
      }

      .pricing-table tbody td:last-child {
        border-bottom: 0;
      }

      .pricing-table tbody td::before {
        position: absolute;
        top: 15px;
        left: 15px;
        width: 45%;
        white-space: nowrap;
        font-weight: 700;
        content: attr(data-label);
      }
    }

    .price-note {
      margin-top: 10px;
      font-size: 16px;
      color: #333;
      font-style: italic;
      text-align: center;
    }