* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Alexandria", sans-serif;
        line-height: 1.6;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      .hero {
        padding: 34px 0 64px;
        position: relative;
        overflow: hidden;
      }

      .hero .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        position: relative;
      }

      .hero-content {
        display: flex;
        flex-direction: column;
        gap: 12px;
        position: relative;
        z-index: 2;
      }

      .hero-content h1 {
        font-size: 2rem;
        font-weight: 400;
        color: #3c245e;
        line-height: 1.2;
      }

      .hero-content p {
        font-size: 0.875rem;
        color: #3c245e;
        margin-bottom: 12px;
        line-height: 1.2;
      }

      .hero-btn {
        display: inline-block;
        background: linear-gradient(
          242.38deg,
          #3c245e 32.83%,
          #6e42ad 45.66%,
          #7d4bc4 54.93%,
          #7245b3 66.58%,
          #3f2662 82.26%
        );
        box-shadow: 0px 4px 6.1px rgba(125, 75, 196, 0.3);
        color: white;
        border-radius: 50px;
        text-decoration: none;
        font-size: 0.875rem;
        font-weight: 600;
        transition:
          transform 0.3s,
          box-shadow 0.3s;
        border: none;
        cursor: pointer;
        text-align: center;
        align-content: center;
        width: 145px;
        height: 41px;
      }

      .hero-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(60, 36, 94, 0.3);
      }

      .hero-image {
        position: relative;
        right: 50px;
      }

      .hero-image img {
        width: 659px;
        height: auto;
      }

      .services {
        padding: 34px 0;
        background: white;
      }

      .section-title {
        font-size: 2rem;
        font-weight: 600;
        color: #ffffff;
        text-align: center;
        height: 163px;
        background-color: #3c245e;
        align-content: center;
      }

      .services-grid {
        display: flex;
        flex-direction: column;
      }

      .services-row-top,
      .services-row-bottom {
        display: flex;
        justify-content: center;
      }

      .service-card {
        text-align: center;
        padding: 14px 20px;
        border-radius: 16px;
        transition:
          transform 0.3s,
          box-shadow 0.3s;
        background: white;
        width: 298px;
      }

      .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(60, 36, 94, 0.1);
      }

      .service-card img {
        width: 100%;
        max-width: 280px;
        height: 200px;
        object-fit: contain;
      }

      .service-card h3 {
        font-size: 1rem;
        font-weight: 600;
        color: #3c245e;
        line-height: 1.3;
      }

      .advantages {
        padding: 80px 0 124px;
      }

      .advantages-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 60px;
      }

      .advantage-card {
        text-align: center;
      }

      .advantage-icon {
        margin: 0 auto 24px;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .advantage-icon img {
        width: auto;
        height: 100px;
        object-fit: contain;
      }

      .advantage-card h3 {
        font-size: 1rem;
        font-weight: 600;
        color: #3c245e;
        margin-bottom: 12px;
      }

      .advantage-card p {
        font-size: 1rem;
        font-weight: 400;
        color: #3c245e;
        line-height: 1.2;
      }

      @media (max-width: 992px) {
        .hero .container {
          grid-template-columns: 1fr;
          text-align: center;
        }

        .hero-content {
          align-items: center;
        }

        .hero-content h1 {
          font-size: 2rem;
        }

        .hero-image {
          order: -1;
          right: 0;
        }

        .hero-image img {
          max-width: 400px;
        }

        .services-grid {
          grid-template-columns: repeat(2, 1fr);
        }

        .services-row-top,
        .services-row-bottom {
          flex-wrap: wrap;
        }

        .advantages-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }
      }

      @media (max-width: 768px) {
        .hero {
          padding: 32px 0 60px;
        }

        .hero-content h1 {
          font-size: 1.75rem;
        }

        .hero-content p {
          font-size: 1rem;
        }

        .section-title {
          font-size: 1.875rem;
          margin-bottom: 40px;
        }

        .services-grid {
          grid-template-columns: 1fr;
          gap: 30px;
        }

        .service-card img {
          max-width: 240px;
          height: 160px;
        }

        .advantages {
          padding: 60px 0;
        }
      }

      @media (max-width: 480px) {
        .hero-content h1 {
          font-size: 1.5rem;
        }

        .hero-image img {
          max-width: 305px;
        }

        .hero-btn {
          padding: 12px 30px;
          font-size: 0.9375rem;
        }

        .section-title {
          font-size: 1.5rem;
        }

        .service-card h3 {
          font-size: 1rem;
        }

        .advantage-card h3 {
          font-size: 1.125rem;
        }

        .advantage-card p {
          font-size: 0.9375rem;
        }
      }