 
        .wristband-custom-section {
            
            padding: 80px 0;
        }
       
        .wristband-custom__header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 40px;
            gap: 40px;
        }
        .wristband-custom__title {
            font-size: 42px;
            font-weight: 600;
            color: #222;
        }
        .wristband-custom__desc {
            max-width: 420px;
            font-size: 16px;
            line-height: 1.6;
            color: #333;
        }
        
        .wristband-custom__cards-wrap {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
      
        .wristband-custom__card-item {
            text-align: center;
        }
        .wristband-custom__card-img {
            width: 100%;
            height: auto;
            display: block;
            margin-bottom: 24px;
            border-radius: 2px;
        }
        .wristband-custom__card-title {
            font-size: 20px;
            font-weight: 600;
            color: #333;
            margin-bottom: 12px;
        }
        .wristband-custom__card-text {
            font-size: 15px;
            line-height: 1.5;
            color: #444;
        }
      
        @media (max-width: 992px) {
            .wristband-custom__header {
                flex-direction: column;
            }
            .wristband-custom__cards-wrap {
                grid-template-columns: 1fr;
            }
            .wristband-custom__title {
                font-size: 32px;
            }
        }
        @media (max-width: 576px) {
            .wristband-custom-section {
                margin: 40px auto;
                padding: 0 16px;
            }
            .wristband-custom__title {
                font-size: 26px;
            }
            .wristband-custom__header {
                gap: 20px;
                margin-bottom: 28px;
            }
            .wristband-custom__cards-wrap {
                gap: 24px;
            }
        }