* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    color: #1e1e2f;
    line-height: 1.5;
    background-color: #fff;
    overflow-x: hidden;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}
h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}
h2:after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: #0056a7;
    margin-top: 12px;
    border-radius: 2px;
}
h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.section {
    padding: 60px 0;
    scroll-margin-top: 100px;
}
.section-light {
    background-color: #f9fafc;
}
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0,86,167,0.1);
}
.btn-primary {
    background-color: #0056a7;
    color: white;
}
.btn-primary:hover {
    background-color: #003d7a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,86,167,0.3);
}
.btn-outline {
    background-color: transparent;
    border: 2px solid #0056a7;
    color: #0056a7;
}
.btn-outline:hover {
    background-color: #0056a7;
    color: white;
    transform: translateY(-2px);
}
.header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,86,167,0.1);
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s;
}
.header.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0056a7, #1e3c72);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    cursor: pointer;
}
.logo img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}
.nav a {
    text-decoration: none;
    font-weight: 500;
    color: #1e1e2f;
    transition: color 0.2s;
    font-size: 1rem;
    position: relative;
}
.nav a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #0056a7;
    transition: width 0.2s ease;
}
.nav a:hover:after,
.nav a.active:after {
    width: 100%;
}
.nav a.active {
    color: #0056a7;
    font-weight: 600;
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 200;
}
.burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #1e1e2f;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.header.menu-open .burger-menu span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.header.menu-open .burger-menu span:nth-child(2) {
    opacity: 0;
}
.header.menu-open .burger-menu span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 992px) {
    .nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 15px;
    }
    .header .container {
        flex-direction: column;
    }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
}
@media (max-width: 768px) {
    .header .container {
        flex-direction: row;
        justify-content: space-between;
    }
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(8px);
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
        z-index: 99;
        border-top: 1px solid rgba(0,86,167,0.1);
    }
    .nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin: 0;
    }
    .nav ul li {
        width: 100%;
        text-align: center;
    }
    .nav a {
        display: block;
        padding: 10px 0;
        font-size: 1.2rem;
    }
    .header.menu-open .nav {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .burger-menu {
        display: flex;
    }
}
.hero {
    background: radial-gradient(circle at 80% 30%, rgba(0,86,167,0.05) 0%, rgba(255,255,255,0) 50%), linear-gradient(145deg, #f0f5fa 0%, #fff 70%);
    padding: 60px 0;
    scroll-margin-top: 100px;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}
.hero-content p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 30px;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.hero-image {
    text-align: center;
    animation: float 4s ease-in-out infinite;
}
.hero-image i {
    font-size: 12rem;
    color: #cbd5e0;
    filter: drop-shadow(0 20px 20px rgba(0,86,167,0.1));
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-buttons { justify-content: center; }
    .hero-image {
        display: none;
    }
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}
.about-text p {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 25px;
}
.advantages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.advantage-item {
    background: #f9fcff;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,86,167,0.1);
    border: 1px solid rgba(0,86,167,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}
.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 40px rgba(0,86,167,0.15);
}
.advantage-item i {
    font-size: 2.5rem;
    color: #0056a7;
    margin-bottom: 15px;
}
.advantage-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.advantage-item p {
    color: #2d3748;
}
@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .advantages { grid-template-columns: 1fr; }
}

/* --- КАРУСЕЛЬ ПРОДУКЦИИ --- */
.product-category {
    margin-bottom: 50px;
}
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}
.product-category h3 {
    font-size: 1.4rem;
    color: #0056a7;
    border-left: 5px solid #0056a7;
    padding-left: 20px;
    margin: 0;
}
.carousel-section {
    margin: 0;
    position: relative;
}
.carousel-container {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
    padding: 30px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    border-top: 2px solid rgba(0, 86, 167, 0.2);
    border-bottom: 2px solid rgba(0, 86, 167, 0.2);
    box-shadow: 0 4px 12px rgba(0, 86, 167, 0.15);
}
.carousel-container::-webkit-scrollbar {
    display: none;
}
.carousel-track {
    display: flex;
    gap: 24px;
    padding: 0 40px;
    width: max-content;
}
.carousel-item {
    flex: 0 0 auto;
    width: 280px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.4s ease;
    scroll-snap-align: center;
    border: 1px solid rgba(0,86,167,0.1);
}
.carousel-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 45px rgba(0,86,167,0.2);
}
.carousel-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.5s ease;
}
.carousel-item:hover img {
    transform: scale(1.05);
}
.carousel-item.active {
    box-shadow: 0 25px 45px rgba(0,86,167,0.3);
    border: 2px solid #0056a7;
}
.carousel-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.carousel-arrow,
.carousel-reset,
.carousel-more {
    height: 48px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 86, 167, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    color: #0056a7;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0 20px;
    gap: 8px;
}
.carousel-arrow {
    width: 48px;
    padding: 0;
    font-size: 1.2rem;
}
.carousel-reset {
    width: 48px;
    padding: 0;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, background 0.2s;
}
.carousel-reset.visible {
    opacity: 1;
    visibility: visible;
}
.carousel-more {
    background: #0056a7;
    color: white;
    border-color: #0056a7;
}
.carousel-arrow:hover:not(:disabled),
.carousel-reset:hover:not(:disabled) {
    background: #0056a7;
    color: white;
    border-color: #0056a7;
    transform: scale(1.1);
    box-shadow: 0 8px 18px rgba(0,86,167,0.3);
}
.carousel-more:hover {
    background: #003d7a;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,86,167,0.4);
}
.carousel-arrow:disabled,
.carousel-reset:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
@media (max-width: 768px) {
    .category-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .carousel-container {
        padding: 20px 0;
    }
    .carousel-item {
        width: 220px;
    }
    .carousel-arrow,
    .carousel-reset,
    .carousel-more {
        height: 42px;
        font-size: 0.9rem;
    }
    .carousel-arrow {
        width: 42px;
        font-size: 1rem;
    }
    .carousel-reset {
        width: 42px;
    }
    .carousel-more {
        padding: 0 16px;
    }
}
@media (max-width: 480px) {
    .carousel-item {
        width: 180px;
    }
    .carousel-controls {
        gap: 8px;
    }
}

/* --- ФОРМА ЗАПРОСА --- */
.request-form {
    background: white;
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    border: 1px solid #e2e8f0;
    max-width: 800px;
    margin: 0 auto;
    scroll-margin-top: 100px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 22px;
    border: 1px solid #cbd5e0;
    border-radius: 40px;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}
.form-group textarea {
    border-radius: 25px;
    resize: vertical;
    min-height: 100px;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0056a7;
    box-shadow: 0 0 0 4px rgba(0,86,167,0.1);
}

/* --- СТИЛЬНЫЙ ВЫБОР КАНАЛА --- */
.channel-selector {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: nowrap;
}
.channel-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    border-radius: 60px;
    border: 2px solid #e2e8f0;
    background: white;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.channel-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,86,167,0.15);
    border-color: #b9d4f0;
}
.channel-option:has(input:checked) {
    border-color: #0056a7;
    background: #eef4ff;
    box-shadow: 0 6px 14px rgba(0,86,167,0.2);
}
.channel-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}
.channel-option i {
    font-size: 1.6rem;
    transition: transform 0.2s;
}
.channel-option:has(input:checked) i {
    transform: scale(1.05);
}
.channel-option span {
    font-weight: 600;
    font-size: 1rem;
    color: #1e1e2f;
}
.channel-option:has(input:checked) span {
    color: #0056a7;
}
.channel-option:first-child i {
    color: #25D366;
}
.channel-option:last-child i {
    color: #26A5E4;
}

@media (max-width: 768px) {
    .channel-selector {
        gap: 12px;
    }
    .channel-option {
        padding: 10px 18px;
        gap: 8px;
    }
    .channel-option i {
        font-size: 1.3rem;
    }
    .channel-option span {
        font-size: 0.9rem;
    }
}
@media (max-width: 480px) {
    .channel-option {
        padding: 8px 14px;
    }
}

/* --- КОНТАКТЫ --- */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.contact-info {
    background: white;
    padding: 40px;
    border-radius: 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.02);
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    transition: transform 0.2s;
}
.contact-item:hover {
    transform: translateX(5px);
}
.contact-item i {
    width: 30px;
    color: #0056a7;
    font-size: 1.3rem;
}
.contact-item a {
    color: inherit;
    text-decoration: none;
}
.contact-item a:hover {
    text-decoration: underline;
}
.work-hours {
    margin-top: 20px;
    color: #4a5568;
    padding-top: 15px;
    border-top: 1px dashed #cbd5e0;
}
.social-card {
    background: white;
    padding: 40px;
    border-radius: 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.social-card h3 {
    margin-bottom: 25px;
    text-align: center;
}
.social-icons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0056a7;
    color: white;
    font-size: 2rem;
    transition: all 0.3s;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
    text-decoration-color: white;
}
.social-icons a:hover {
    transform: scale(1.1);
    background: #003d7a;
}
@media (max-width: 768px) {
    .contacts-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .contact-item {
        justify-content: center;
        gap: 8px;
    }
    .contact-item i {
        width: 24px;
        font-size: 1.2rem;
    }
}
/* --- ФУТЕР --- */
.footer {
    background: linear-gradient(135deg, #1e1e2f 0%, #1a2a3a 100%);
    color: #cbd5e0;
    padding: 40px 0 20px;
}
.footer .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-contacts {
    flex: 1 1 30px;
}
.footer-contacts i {
    margin-right: 8px;
    color: #3a8cff;
}
.footer-contacts div {
    margin-bottom: 8px;
    transition: transform 0.2s, color 0.2s;
}
.footer-contacts div:hover {
    transform: translateX(5px);
    color: white;
}
.footer-contacts a {
    color: #cbd5e0;
    text-decoration: none;
}
.footer-contacts a:hover {
    text-decoration: underline;
}
.footer-nav {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.footer-nav .nav-list {
    list-style: none;
    text-align: right;
}
.footer-nav .nav-list li {
    margin-bottom: 8px;
}
.footer-nav .nav-list a {
    color: #cbd5e0;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
}
.footer-nav .nav-list a:hover {
    color: white;
    transform: translateX(5px);
    text-decoration: underline;
}
.footer-bottom {
    text-align: center;
    padding-top: 5px;
    padding-bottom: 20px;
    font-size: 0.9rem;
    color: #8a9bb5;
}
.footer-bottom a {
    color: #8a9bb5;
    text-decoration: underline;
    transition: color 0.2s;
}
.footer-bottom a:hover {
    color: white;
}
@media (max-width: 768px) {
    .footer {
        padding: 20px 0 20px;
    }
    .footer .container {
        gap: 80px;
    }
    .footer-top {
        gap: 0;
        margin: 0;
        padding: 0;
    }
    .footer-contacts {
        display: none;
    }
    .footer-nav {
        margin: 0;
        padding: 0;
        width: 100%;
        align-items: center;
    }
    .footer-nav .nav-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin: 0;
        padding: 0 10px;
        list-style: none;
    }
    .footer-nav .nav-list li {
        margin: 0;
        padding: 0;
    }
    .footer-nav .nav-list a {
        font-size: 1rem;
        line-height: 1.4;
        margin: 0;
        padding: 8px 12px;
        white-space: nowrap;
        color: #cbd5e0;
        text-decoration: none;
        transition: background 0.2s, color 0.2s;
        border-radius: 4px;
    }
    .footer-nav .nav-list a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }
    .footer-bottom {
        padding: 0;
        margin: 0;
        font-size: 0.85rem;
        line-height: 1.4;
        text-align: center;
        color: #8a9bb5;
    }
    .footer-bottom p {
        margin: 0;
        padding: 4px 0 0;
    }
    .footer-bottom a {
        color: #8a9bb5;
        text-decoration: underline;
        transition: color 0.2s;
    }
    .footer-bottom a:hover {
        color: white;
    }
}
@media (max-width: 576px) {
    .footer {
        padding: 15px 0 15px;
    }
    .footer .container {
        gap: 80px;
    }
    .footer-nav .nav-list {
        gap: 8px;
    }
    .footer-nav .nav-list a {
        font-size: 0.9rem;
        padding: 6px 8px;
    }
    .footer-bottom {
        font-size: 0.75rem;
    }
    .footer-bottom p {
        padding-top: 2px;
    }
}

/* --- АНИМАЦИИ --- */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.appeared {
    opacity: 1;
    transform: translateY(0);
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.product-card .fa-fan,
.hero-image .fa-fan,
.fa-fan {
    animation: spin 3s linear infinite;
}
.hero-image .fa-fan {
    font-size: 21.28rem;
}

/* --- МОДАЛЬНОЕ ОКНО --- */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}
.modal.show {
    display: flex;
}
.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}
.modal-close {
    position: absolute;
    top: -50px;
    right: -50px;
    color: white;
    font-size: 36px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1010;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.modal-close i {
    font-size: 36px;
    line-height: 1;
}
.modal-close:hover {
    transform: rotate(90deg);
    opacity: 0.8;
}
.modal-body {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
    cursor: pointer;
}
.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    font-weight: 100;
    cursor: pointer;
    z-index: 1020;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0.8;
    line-height: 1;
    padding: 0;
}
.modal-prev {
    left: -70px;
}
.modal-next {
    right: -70px;
}
.modal-prev:hover,
.modal-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}
@media (max-width: 768px) {
    .modal-prev,
    .modal-next {
        display: none;
    }
    .modal-close {
        top: -40px;
        right: 0;
        font-size: 30px;
    }
    .carousel-controls {
        display: none;
    }
}
@media (min-width: 769px) {
    .social-card {
        padding-top: 20px;
    }
}
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .request-form {
        padding: 25px;
    }
    .contact-info,
    .social-card {
        padding: 25px;
    }
}

.carousel-more{
    margin-top: 1rem;
}

@media (min-width: 350px) and (max-width: 404px) {
  .cityAdress {
    font-size: 15px;
  }
}

section[id] {
    scroll-margin-top: 100px;
}

/* --- СТИЛИ ДЛЯ 152-ФЗ --- */

.privacy-agreement {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: #2d3748;
    line-height: 1.4;
}

.privacy-agreement input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #0056a7;
}

.privacy-agreement label {
    cursor: pointer;
}

.privacy-agreement a {
    color: #0056a7;
    font-weight: 600;
    text-decoration: underline;
}

.privacy-agreement a:hover {
    color: #003d7a;
}

/* Модальное окно политики */
.privacy-modal-content {
    max-width: 800px;
    width: 95%;
    max-height: 85vh;
    overflow-y: auto;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
}

.privacy-modal-content .modal-close {
    top: 15px;
    right: 15px;
    color: #1e1e2f;
    font-size: 24px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.05);
    border-radius: 50%;
    transition: 0.2s;
}

.privacy-modal-content .modal-close:hover {
    background: rgba(0,0,0,0.1);
    transform: rotate(90deg);
}

.privacy-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #2d3748;
}

.privacy-body h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #1e1e2f;
    position: relative;
}

.privacy-body h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #0056a7;
    margin-top: 10px;
    border-radius: 2px;
}

.privacy-body p {
    margin-bottom: 18px;
}

.privacy-body strong {
    color: #1e1e2f;
}

@media (max-width: 768px) {
    .privacy-modal-content {
        padding: 25px 20px;
        max-height: 90vh;
    }
    .privacy-body h2 {
        font-size: 1.4rem;
    }
    .privacy-body {
        font-size: 0.9rem;
    }
}