      :root {
        --accent: #206bc4;
        --accent-light: #eff6ff;
        --accent-dark: #1c4f91;
      }
      .feature-section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 1rem 0;
      }
      .feature-box {
        display: flex;
        align-items: center;
        background-color: #f8f9fa;
        color: #1e293b;
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s ease-out forwards;
      }
      .feature-box:nth-child(1) {
        animation-delay: 0.1s;
      }
      .feature-box:nth-child(2) {
        animation-delay: 0.2s;
      }
      .feature-box:nth-child(3) {
        animation-delay: 0.3s;
      }
      .feature-box:nth-child(4) {
        animation-delay: 0.4s;
      }
      .feature-box:nth-child(5) {
        animation-delay: 0.5s;
      }
      .feature-box:nth-child(6) {
        animation-delay: 0.6s;
      }
      @keyframes fadeInUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .feature-img {
        width: 180px;
        height: auto;
        border-radius: 12px;
        margin-right: 1.25rem;
      }
      .feature-text h3 {
        font-weight: 600;
        color: #0f172a;
        margin-bottom: 0.5rem;
      }
      .feature-text p {
        font-size: 1rem;
        color: #334155;
      }
      .highlight {
        color: #0ea5e9;
        font-weight: bold;
        font-size: 1.05em;
      }
      .main-header {
        padding: 3rem 0;
        text-align: center;
        border-bottom: 2px solid #e2e8f0;
      }
      .main-header h1 {
        font-weight: 700;
        font-size: 2.5rem;
        color: #0f172a;
      }
      .main-header p {
        color: #475569;
        font-size: 1.25rem;
      }
      .banner {
        background-image: url('/static/img/bannerv2.jpg');
        background-size: auto;
        background-repeat: no-repeat;
        background-position: center;
        position: relative;
        padding: 4rem 2rem;
        margin-top: 2rem;
        border-radius: 0;
        overflow: hidden;
      }
      .banner-content {
        position: relative;
        max-width: 600px;
        margin-left: auto;
        text-align: right;
        color: #f1f5f9;
        padding-right: 2rem;
        background: rgba(15, 23, 42, 0.6);
        border-radius: 0.5rem;
        padding: 2rem;
        backdrop-filter: blur(5px);
        opacity: 0;
        transform: translateX(40px);
        animation: slideInRight 1s ease-out forwards;
      }
      @keyframes slideInRight {
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }
      .banner h2 {
        font-size: 2.25rem;
        font-weight: 700;
        margin-bottom: 1rem;
      }
      .banner p {
        font-size: 1.125rem;
      }
      .btn-primary {
        background-color: #0ea5e9;
        border-color: #0ea5e9;
        color: #fff;
      }

      .quick-start {
        margin-top: 4rem;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;

      }
      .quick-start a{
          text-decoration: none;
      }
      .qs-link {
        text-decoration: none;
      }
      .qs-item {
        background-color: #edf1f4;
        border: 1px solid #e4e7ec;
        border-radius: 8px;
        padding: 1.25rem 1rem;
        text-align: center;
        transition: all 0.2s ease-in-out;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }
      .qs-item:hover {
        background-color: #bae6fd;
        border-color: #7dd3fc;
        transform: translateY(-2px);
        text-decoration: none;
      }
      .qs-item.double {
        grid-column: span 2;
      }
      .qs-icon {
        font-size: 2.75rem;
        color: #0ea5e9;
        margin-bottom: 0.5rem;

      }
      .qs-label {
          font-weight: 300;
          color: #0f172a;
          font-size: 1.25rem;
      }
    .section-title {
        font-size: 1.75rem;
        font-weight: 300;
        color: #0f172a;
        margin: 3rem 0 1.5rem;
        display: flex;
        align-items: center;
        gap: .75rem;
        position: relative;
      }
      .section-title::before {
        content: "";
        display: inline-block;
        width: 6px;
        height: 28px;
        background-color: var(--accent);
        border-radius: 3px;
      }

     @media (max-width: 768px) {
        .feature-section {
          grid-template-columns: 1fr;
        }
        .quick-start {
          grid-template-columns: repeat(2, 1fr);
        }
      }

