@media (min-width: 768px) {
    h2 {
        font-size: 2em;
        margin-bottom: 0;
    }
}

.sec-head1 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.sec-head2 {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    color: #8c9199;
    margin-bottom: 24px;
}


.categorie-section {
padding: 0px;
    box-shadow: none;

}

.title_card {
    background: #464646;
    border-radius: 8px 8px 0 0;
    text-align: center;
	color: white;
	line-height: 1.5;
	padding: 8px;
}
a.btn.align-card {
    display: block;
	margin: 20px;
}

.card-link_loyality > h2, .card-link_loyality > h3 {
    text-align: center;
}
.card-link_loyality > h3 {
    text-align: center;
	padding-top: 10px
}
a.card-link_loyality {
    text-decoration: none;
    color: #000000;
}
.card-link_loyality {
    display: block;
    border: 1px solid #e3e3e3;
	min-height: 650px;
	height: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 8px;
    background-color: white;
}
.card-link_loyality:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-link_loyality ul li::marker {
  color: #e5097f;
  font-size: 1.5em;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 6px 0px;
    margin-top: 6px;
}

.social-grid a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}


@media (max-width: 768px) {
    h2 {
        font-size: 1.6em;
        margin-bottom: 0;
    }
}

/* ====== NEW: Modern light design for contacts (append at end) ====== */

.center-block { margin-bottom: 18px; }

.contact-card{
    margin: 0 0 14px;
    padding: 16px 16px 14px;
    border: 1px solid rgba(17, 24, 39, .08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(17, 24, 39, .06);
    line-height: 1.35;
}

.contact-card strong{
    display: block;
    font-size: 18px;
    letter-spacing: .2px;
    margin-bottom: 6px;
}

.contact-card br + br { display: none; }

.contact-card .contact-phone{
    color: #111827;
    text-decoration: none;
    border-bottom: 1px dashed rgba(17, 24, 39, .25);
}
.contact-card .contact-phone:hover{
    border-bottom-color: rgba(229, 9, 127, .7);
}

.social-grid{
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* строго 2 в ряд */
    gap: 10px;
}

.social-grid .social-btn{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(17, 24, 39, .08);
    background: rgba(17, 24, 39, .02);
    text-decoration: none;
    color: #111827;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
    white-space: nowrap;
}

.social-grid .social-btn:hover{
    transform: translateY(-1px);
    background: rgba(229, 9, 127, .06);
    border-color: rgba(229, 9, 127, .20);
    box-shadow: 0 10px 20px rgba(17, 24, 39, .08);
}

.social-grid .social-btn:active{
    transform: translateY(0);
    box-shadow: none;
}

.social-grid .social-btn i,
.social-grid .social-btn svg{
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    display: inline-block;
}

@media (max-width: 576px){
    .contact-card{ padding: 14px; border-radius: 16px; }
    .social-grid{ gap: 8px; }
    .social-grid .social-btn{ padding: 9px 10px; border-radius: 12px; }
}