  :root {
      --primary-color3: #0b89ff;
      --secondary-color3: #1354aa;
  }

  @property --angle {
      syntax: "<angle>";
      inherits: false;
      initial-value: 0deg;
  }

  * {
      box-sizing: border-box;
  }


  .showcase-section {
      font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      width: 95%;
      max-width: 100vw;
      margin: 0 auto;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 24px;
      padding: 60px 40px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }

  .section-header {
      text-align: center;
      margin-bottom: 60px;
  }

  .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #2d3748;
      margin-bottom: 16px;
      background: linear-gradient(135deg, var(--primary-color3) 0%, var(--secondary-color3) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .section-subtitle {
      font-size: 1.125rem;
      color: #718096;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
  }

  .content-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-bottom: 80px;
  }

  .text-content h3 {
      font-size: 1.875rem;
      color: #2d3748;
      margin-bottom: 20px;
      font-weight: 700;
  }

  .text-content p {
      font-size: 1.0625rem;
      color: #4a5568;
      line-height: 1.8;
      margin-bottom: 16px;
  }

  .image-catalog {
      position: relative;
      height: 400px;
      overflow: visible;
  }

  .catalog-image {
      position: absolute;
      border-radius: 16px;
      padding: 3px;
      overflow: hidden;
      width: 50%;
      height: 280px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(#000, #000) padding-box,
          conic-gradient(from var(--angle),
              transparent,
              #008cff00,
              var(--primary-color3),
              var(--secondary-color3),
              #008cff00,
              transparent) border-box;
      border: 3px solid transparent;
  }

  @keyframes spin {
      to {
          --angle: 360deg;
      }
  }

  .catalog-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 13px;
  }

  .catalog-image:nth-child(1) {
      top: 0;
      left: 0;
      z-index: 3;
      transform: rotate(-3deg);
  }

  .catalog-image:nth-child(2) {
      top: 40px;
      right: 0;
      z-index: 2;
      transform: rotate(2deg);
  }

  .catalog-image:nth-child(3) {
      bottom: 0;
      left: 15%;
      z-index: 1;
      transform: rotate(-1deg);
  }

  .catalog-image:hover {
      transform: scale(1.05) rotate(0deg) !important;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
      z-index: 10;
      animation: spin 3s linear infinite;
  }

  .stats-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 60px;
  }

  .stat-card {
      background: white;
      border-radius: 16px;
      padding: 32px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      border: 2px solid transparent;
  }

  .stat-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(102, 126, 234, 0.25);
      border-color: #667eea;
  }

  .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 8px;
  }

  .stat-label {
      font-size: 1rem;
      color: #718096;
      font-weight: 500;
  }

  .cta-section {
      text-align: center;
      margin-top: 60px;
  }

  .cta-button {
      display: inline-block;
      padding: 16px 48px;
      background: linear-gradient(135deg, #253785 0%, #3342c9 100%);
      color: white;
      text-decoration: none;
      border-radius: 12px;
      font-size: 1.125rem;
      font-weight: 600;
      box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
      transition: all 0.3s ease;
  }

  .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
  }

  @media (max-width: 768px) {
      .showcase-section {
          padding: 40px 24px;
      }

      .section-title {
          font-size: 1.875rem;
      }

      .content-grid {
          grid-template-columns: 1fr;
          gap: 40px;
      }

      .image-catalog {
          height: 350px;
          order: -1;
      }

      .catalog-image {
          width: 80%;
          height: 220px;
      }

      .catalog-image:nth-child(1) {
          top: 0;
          left: 10%;
      }

      .catalog-image:nth-child(2) {
          top: 60px;
          right: 10%;
      }

      .catalog-image:nth-child(3) {
          bottom: 0;
          left: 5%;
      }

      .text-content h3 {
          font-size: 1.5rem;
      }

      .stats-container {
          grid-template-columns: 1fr;
          gap: 20px;
      }
  }

  body {
      font-family: Poppins;
  }


  .about-container {
      font-family: 'Inter', sans-serif;
      max-width: 900px;
      margin: 60px auto;
      padding: 0 20px;
      line-height: 1.8;
      color: #1a1a1a;
  }

  .about-hero {
      text-align: center;
      padding-bottom: 40px;
      border-bottom: 2px solid #eee;
      font-family: Poppins;
  }

  .about-hero h1 {
      font-size: 2.8rem;
      font-family: 'Playfair Display', serif;
      color: #00a6ff;
      margin-bottom: 10px;
      font-family: Poppins;
  }

  .about-hero p {
      font-size: 1.2rem;
      color: #555;
      font-family: Poppins;
  }

  .about-section {
      margin-top: 50px;
      background: #ffffff;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
  }

  .about-section:hover {
      transform: translateY(-2px);
  }

  .about-section h2 {
      font-size: 1.6rem;
      color: #004094;
      margin-bottom: 15px;
      font-family: Poppins;
  }

  .about-section p,
  .about-section ul {
      font-size: 1rem;
      color: #333;
      font-family: Poppins;
  }

  .about-section ul {
      list-style-type: disc;
      padding-left: 20px;
  }