
.nav-section__head{
    margin-bottom: 30px;
}
.nav-section__head .h2{
    margin-bottom: 0;
}
.nav-section__head .subtitle{
    margin: 0;
}
.gf-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    grid-template-areas: 'one one two'
                            'tree four four';
    margin-bottom: 60px;
    @media (max-width: 991px) {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: 'one one ' 'two tree' ' four four';
    }
    @media (max-width: 767px) {
        grid-template-columns: repeat(1, 1fr);
        grid-template-areas: 'one' 'two'  'tree' ' four';
    }

    
        
}
 
/* Card */
.gf-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(16, 24, 40, 0.06);
    border: 1px solid #eef0f3;
    padding: 22px 22px 18px;
    transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.gf-card:first-child{
    grid-area: one;
}
.gf-card:first-child .gf-card__list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    
    @media (max-width: 767px) {
        grid-template-columns: 1fr 1fr;
    }
    @media (max-width: 576px) {
        grid-template-columns: 1fr;
    }
}

.gf-card:nth-child(2){
    grid-area: two;
}
.gf-card:nth-child(3){
    grid-area: tree;
}
.gf-card:nth-child(4){
    grid-area: four;
}
.gf-card:nth-child(4) .gf-card__list{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.gf-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(16, 24, 40, 0.12);
    border-color: #e7e9ed;
}
.gf-card__head{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}


/* Icon circle */
.gf-card__icon { 
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #B63C3C; /* brand red */
    color: #fff;
    box-shadow: 0 4px 10px rgba(182, 60, 60, 0.25);
    padding: 10px;
}
.gf-card__icon svg path, .gf-card__icon svg rect , .gf-card__icon svg circle{ 
    fill: #fff;
    
}

/* Title */
.gf-card__title {
    font-size: 18px;
    line-height: 120%;
    font-weight: 600;
    color: #364657;
    margin: 6px 0 10px;
    transition: 0.3s ease;
}
.gf-card__title:hover{
    color: #a83636;
}

/* List inside card */
.gf-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 5px 20px;
}
.gf-card__list li {
    display: flex;
    color: #6b7280;
    
}
.gf-card__list a {
    color: inherit;
    text-decoration: none;
    font-size: 16px;
    line-height: 120%;
    @media (max-width: 767px) {
        font-size: 14px;
    }
}
.gf-card__list a:hover {
    color: #B63C3C;
}



/* Checkbox для политики конфиденциальности */
.form-group--checkbox .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 0;
}

.form-group--checkbox .checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: #B63C3C;
    border-radius: 4px;
    position: relative !important;
    opacity: 1 !important;
}

.form-group--checkbox .checkbox-label span {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}
.form-group--checkbox .checkbox-label span b{
    color: #B63C3C;
}
.form-group--checkbox .checkbox-label a {
    color: #B63C3C;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.form-group--checkbox .checkbox-label a:hover {
    color: #a83636;
}

@media (max-width: 576px) {
    .form-group--checkbox .checkbox-label span {
        font-size: 12px;
    }
}





