
  /* Volaby Content Box Block Styles */
  .volaby-content-box {
      padding: 2em;
      margin: 1em 0;
      border-radius: 8px;
      text-align: left;
      transition: transform 0.3s ease;
  }

  .volaby-content-box:hover {
      transform: translateY(-2px);
  }

  .volaby-content-box h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 1rem;
      text-transform: uppercase;
  }

  .volaby-content-box p {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 1.5rem;
  }

  /* Color Schemes */
  .volaby-content-box-mulberry {
      background-color: #6E1C42;
      color: white;
  }

  .volaby-content-box-brunswick {
      background-color: #0A4439;
      color: white;
  }

  .volaby-content-box-tangerine {
      background-color: #F05223;
      color: white;
  }

  .volaby-content-box-mint {
      background-color: #BFE3D6;
      color: #0A4439;
  }

  .volaby-content-box .demo-button {
      display: inline-block;
      padding: 0.75em 1.5em;
      background-color: rgba(255, 255, 255, 0.2);
      color: inherit;
      text-decoration: none;
      border-radius: 4px;
      font-weight: 600;
      transition: background-color 0.3s ease;
  }

  .volaby-content-box-mint .demo-button {
      background-color: #0A4439;
      color: white;
  }

  .volaby-content-box .demo-button:hover {
      background-color: rgba(255, 255, 255, 0.3);
  }

  .volaby-content-box-mint .demo-button:hover {
      background-color: #6E1C42;
  }

  /* Editor Styles */
  .editor-preview {
      border: 2px dashed #ccc;
  }

  /* Subpage Template Styles */
  .subpage-hero {
      background: linear-gradient(135deg, #6E1C42, #0A4439);
      color: white;
      padding: 4em 0;
      text-align: center;
  }

  .subpage-hero .page-title {
      font-family: 'Outfit', sans-serif;
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-transform: uppercase;
  }

  .subpage-hero .page-subtitle {
      font-size: 1.25rem;
      opacity: 0.9;
      max-width: 600px;
      margin: 0 auto;
  }

  .subpage-content {
      padding: 4em 0;
  }

  .subpage-content .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2em;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .subpage-hero .page-title {
          font-size: 2rem;
      }

      .volaby-content-box {
          padding: 1.5em;
      }

      .subpage-content {
          padding: 2em 0;
      }
  }

