/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Ubuntu', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}
.btn-primary {
    background-color: #005d8c;
    color: #fff;
    border-color: #005d8c;
}
.btn-primary:hover {
    background-color: #003379;
    border-color: #003379;
}
.btn-secondary {
    background-color: #f2c94c;
    color: #333;
    border-color: #f2c94c;
}
.btn-secondary:hover {
    background-color: #ffd900;
    border-color: #ffd900;
}
.btn-outline {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}
.btn-outline:hover {
    background-color: #fff;
    color: #005d8c;
}
.section-title {
    font-family: 'Play', sans-serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #001a3d;
}
.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
}
/* Header */
.top-bar {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Дополнительные стили для адаптивности таблиц цен на всех страницах продукции */
.price-table th,
.price-table td {
    padding: 20px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 18px;
    color: #001a3d;
}

@media (max-width: 768px) {
    .price-table th,
    .price-table td {
        padding: 12px 8px;
        font-size: 14px;
    }
    
    .price-table {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .price-table th,
    .price-table td {
        padding: 10px 6px;
        font-size: 12px;
    }
    
    .price-subtitle {
        font-size: 1.5rem;
    }
    
    .price-description {
        font-size: 1rem;
    }
}
.logo img {
    height: 50px;
    width: auto;
}

@media (max-width: 768px) {
    .logo img {
        width: 100%;
        height: auto;
        max-height: 50px;
    }
}
.company-info {
    text-align: center;
}
.company-info strong {
    font-size: 1.1rem;
    color: #001a3d;
}
.contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.phone {
    font-size: 1.6rem;
    font-weight: 700;
    color: #005d8c;
    margin-bottom: 5px;
}
.email {
    font-size: 1rem;
    color: #003379;
    margin-bottom: 10px;
}
.callback-link {
    color: #003379;
    border-bottom: 1px dashed #003379;
    font-size: 0.9rem;
}
/* Navigation */
.main-nav {
    background-color: #001a3d;
    padding: 0;
}
.nav-container {
    display: flex;
    justify-content: center;
}
.nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.nav-list li {
    margin: 0;
}
.nav-list a {
    display: block;
    padding: 20px 25px;
    color: #fff;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 400;
    transition: background 0.3s;
}
.nav-list a:hover {
    background-color: #003379;
}
/* Hero */
.hero {
    position: relative;
    background: url('../img/hero-slider.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,25,59,0.8), rgba(117,0,0,0.7));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 2;
}
.hero-title {
    font-family: 'Play', sans-serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}
.hero-subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 300;
}
.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-family: 'Play', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.stat-text {
    font-size: 1.2rem;
    opacity: 0.9;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.hero-note {
    margin-top: 40px;
    font-size: 1.1rem;
    opacity: 0.9;
}
/* Products */
.products {
    padding: 80px 0;
    background-color: #f9f9f9;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.product-card:hover {
    transform: translateY(-10px);
}
.product-img {
    height: 200px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
}
.product-content {
    padding: 20px;
}
.product-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #001a3d;
}
.product-desc {
    color: #666;
    margin-bottom: 20px;
}
/* Features */
.features {
    padding: 80px 0;
    background-color: #fff;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}
.feature-item {
    text-align: center;
    padding: 30px 20px;
}
.feature-icon {
    font-size: 3rem;
    color: #005d8c;
    margin-bottom: 20px;
}
.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #001a3d;
}
/* About Page */
.breadcrumbs {
    padding: 20px 0;
    background-color: #f5f5f5;
    font-size: 0.95rem;
    color: #666;
}
.breadcrumbs a {
    color: #005d8c;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}
.about-content {
    padding: 80px 0;
    background-color: #fff;
}
.about-grid {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-text {
    flex: 1;
    min-width: 0; /* Позволяет элементу сжиматься */
    padding: 50px 0; /* Вертикальные отступы 50px */
}

.about-sidebar {
    flex: 0 0 300px; /* Фиксированная ширина 300px */
    align-self: flex-start; /* Прижимаем сайдбар к верху */
    margin-top: 50px; /* Выравнивание по верхнему краю контента */
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Увеличенные отступы между изображениями */
}

@media (max-width: 992px) {
    .about-sidebar {
        flex: 0 250px;
    }
}

@media (max-width: 768px) {
    .about-grid {
        flex-direction: column;
    }
    
    .about-text {
        padding: 20px 0;
    }
    
    .about-sidebar {
        flex: none;
        width: 100%;
    }
    
    .about-images {
        gap: 15px;
    }
}
.about-text h2 {
    font-size: 2rem;
    margin-top: 30px;
    margin-bottom: 30px;
    color: #001a3d;
    font-weight: 700;
}
.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #001a3d;
    font-weight: 600;
}
.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #444;
}
.about-text ul {
    margin: 20px 0;
    padding-left: 20px;
}
.about-text li {
    margin-bottom: 10px;
    line-height: 1.7;
    font-size: 1.1rem;
    color: #444;
}
.certificate-list {
    margin-top: 30px;
}
.certificate-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}
.certificate-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #005d8c;
    font-weight: bold;
}
.gallery {
    padding: 80px 0;
    background-color: #f9f9f9;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}
.gallery-item img:hover {
    transform: scale(1.05);
}
.download-catalog {
    padding: 80px 0;
    background-color: #005d8c;
    color: #fff;
    text-align: center;
}
.download-catalog .section-title {
    color: #fff;
}
.download-catalog .section-subtitle {
    color: #ccc;
}
.download-catalog .btn {
    margin-top: 30px;
}
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.cta-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #001a3d;
}
.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.cta-form .form-group {
    margin-bottom: 20px;
}
.cta-form input,
.cta-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1rem;
}
.cta-form textarea {
    min-height: 120px;
    resize: vertical;
}
.cta-form .btn {
    width: 100%;
}
/* Промо-блок */
.promo-block {
    background-color: #001a3d;
    color: white;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.promo-image {
    flex: 1;
    min-width: 0;
}

.promo-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 0;
}

.promo-text {
    flex: 1;
    min-width: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-text p {
    margin-bottom: 15px;
}

.promo-text .btn {
    align-self: flex-start;
    margin-top: 20px;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

/* Responsive для промо-блока */
@media (max-width: 768px) {
    .promo-content {
        flex-direction: column;
    }
    
    .promo-image,
    .promo-text {
        flex: none;
        width: 100%;
    }
    
    .promo-image img {
        border-radius: 0;
    }
    
    .promo-text {
        padding: 15px 20px;
        gap: 15px;
    }
    
    .promo-content {
        gap: 30px;
    }
}

/* Footer */
.footer {
    background-color: #001a3d;
    color: #fff;
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo img {
    height: 70px;
    margin-bottom: 20px;
}
.footer-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #f2c94c;
}
.footer-contacts .phone {
    color: #fff;
    font-size: 1.4rem;
}
.footer-contacts .email {
    color: #ccc;
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #003379;
    font-size: 0.9rem;
    color: #aaa;
}
/* Photo Grid Block */
.photo-grid-block {
    padding: 60px 0;
    background-color: #fff;
}
.photo-grid-block .container {
    max-width: 1200px;
}
.photo-grid-block .section-title {
    text-align: center;
    margin-bottom: 40px;
}
.photo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.photo-item {
    flex: 0 0 auto;
    text-align: center;
    border: none;
    border-radius: 8px;
    padding: 0;
    background-color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 200px; /* фиксированная ширина для всех элементов */
    box-shadow: 0 4px 12px rgba(0,0,0.1);
    overflow: hidden;
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .photo-item {
        width: calc(50% - 15px); /* Два элемента в ряд на мобильных устройствах */
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .photo-item {
        width: 100%; /* Один элемент в ряд на очень маленьких экранах */
        max-width: 300px;
    }
}
.photo-item img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
    display: block;
}
.photo-size {
    margin-top: 20px;
    padding: 0 15px;
    font-family: 'Play', sans-serif;
    font-size: 20px;
    color: #001a3d;
    font-weight: bold;
}
.photo-button {
    margin-top: 15px;
    padding: 0 15px 25px;
}
.photo-button .btn {
    padding: 6px 18px;
    font-size: 14px;
    border-radius: 4px;
    width: 100%;
    max-width: 160px;
}
.photo-note {
    text-align: center;
    margin-top: 30px;
    color: #666;
    font-size: 16px;
}
/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .nav-list a {
        padding: 15px 20px;
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 20px;
    }
    .logo {
        order: -1; /* Помещаем логотип в начало */
        width: 100%;
        text-align: center;
    }
    .contacts {
        align-items: center;
    }
    .nav-list {
        flex-direction: column;
        align-items: center;
    }
    .nav-list a {
        padding: 12px 20px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-stats {
        gap: 20px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 300px;
    }
}
@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .stat-number {
        font-size: 2rem;
    }
}
/* Дополнительные стили для точного соответствия примеру */
.product-hero {
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    background: var(--product-hero-bg, url('../img/setka_kart.jpg'));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 50px 0;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,25,59,0.8), rgba(117,0,0,0.7));
    z-index: 1;
}

.product-hero > .container {
    position: relative;
    z-index: 2;
}
.product-hero h1 {
    font-family: 'Play', sans-serif;
    font-size: 70px;
    line-height: 1.15;
    margin-bottom: 30px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}
.product-hero p {
    font-size: 20px;
    max-width: 570px;
    margin: 0 auto;
    font-weight: 300;
}
.page-description {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}
.hero-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}
.hero-arrow img {
    width: 40px;
}
.breadcrumbs {
    background-color: #f5f5f5;
    padding: 15px 0;
    font-size: 16px;
    color: #666;
}
.breadcrumbs a {
    color: #005d8c;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}
/* Content before products */
.content-before {
    padding-top: 50px;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}
.content-before .container {
    max-width: 800px;
    margin: 0 auto;
}
/* Content after products */
.page-content-after {
    padding-top: 50px;
    padding-bottom: 50px;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}
.page-content-after .container {
    max-width: 800px;
    margin: 0 auto;
}
.price-title {
    padding: 40px 0;
    background-color: #fff;
    text-align: center;
}
.price-title h2 {
    font-family: 'Play', sans-serif;
    font-size: 42px;
    color: #001a3d;
    margin: 0;
}
.price-section {
    padding: 60px 0;
    background-color: #fff;
}
.price-section.bg-gray {
    background-color: #f9f9f9;
}
.price-section.bg-white {
    background-color: #fff;
}
.price-subtitle {
    font-family: 'Play', sans-serif;
    font-size: 28px;
    color: #001a3d;
    text-align: center;
    margin-bottom: 20px;
}
.price-description {
    font-size: 18px;
    text-align: center;
    color: #001a3d;
    margin-bottom: 40px;
}
.price-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.price-table {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

/* Дополнительные стили для адаптации таблицы на мобильных устройствах */
@media (max-width: 768px) {
    .price-table {
        font-size: 0.9rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 12px 8px;
    }
}

@media (max-width: 480px) {
    .price-table th,
    .price-table td {
        padding: 10px 6px;
        font-size: 0.8rem;
    }
    
    .price-subtitle {
        font-size: 1.5rem;
    }
    
    .price-description {
        font-size: 1rem;
    }
}
.price-table thead {
    background-color: #ebf9ff;
}
.price-table th {
    padding: 20px;
    font-family: 'Play', sans-serif;
    font-size: 18px;
    color: #001a3d;
    border: 1px solid #ddd;
    text-align: center;
}
.price-table td {
    padding: 20px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 18px;
    color: #001a3d;
}
.price-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}
.price-note {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}
.separator {
    height: 1vw;
    background-color: #001a3d;
    overflow: hidden;
}
.separator svg {
    width: 100%;
    height: 100%;
    fill: #001a3d;
}
.download-block {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}
.download-block h3 {
    font-family: 'Play', sans-serif;
    font-size: 24px;
    color: #000;
    margin-bottom: 10px;
}
.download-block p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}
.download-block .btn {
    margin-bottom: 20px;
}
.download-link a {
    color: #333;
    border-bottom: 1px solid #333;
    font-size: 18px;
}
.help-section {
    padding: 80px 0;
    background-color: #001a3d;
    color: #fff;
    text-align: center;
}
.help-section .section-title {
    color: #fff;
    font-size: 42px;
    margin-bottom: 30px;
}
.help-section .section-subtitle {
    color: #f1f1f1;
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto 50px;
}
.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.help-item {
    background-color: #002f70;
    padding: 30px;
    border-radius: 3px;
    text-align: center;
}
.help-item i {
    font-size: 40px;
    color: #f2c94c;
    margin-bottom: 20px;
}
.help-item p {
    font-size: 18px;
    line-height: 1.5;
}
.help-contact {
    max-width: 600px;
    margin: 0 auto;
}
.phone-large {
    font-family: 'Play', sans-serif;
    font-size: 36px;
    color: #fafaf0;
    margin-bottom: 20px;
}
.phone-large span {
    color: #f2c94c;
    border-bottom: 2px solid #f2c94c;
}
.help-contact p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #ccc;
}
.help-contact .btn-secondary {
    margin-bottom: 20px;
}
.help-note {
    font-size: 16px;
    color: #fff;
}
.help-note strong {
    color: #f2c94c;
}
.contact-block {
    padding: 80px 0;
    background-color: #fff;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.contact-title {
    font-family: 'Play', sans-serif;
    font-size: 28px;
    color: #001a3d;
    margin-bottom: 30px;
}
.contact-info div {
    margin-bottom: 15px;
    font-size: 18px;
}
.contact-info strong {
    color: #001a3d;
}
.contact-form {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}
.contact-form p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #666;
}
.simple-form input,
.simple-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
}
.simple-form textarea {
    min-height: 120px;
    resize: vertical;
}
.form-note {
    font-size: 14px;
    color: #999;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .product-hero h1 {
        font-size: 36px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .stat-item {
        text-align: center;
    }
    .product-hero p {
        font-size: 16px;
    }
    .price-title h2 {
        font-size: 32px;
    }
    .price-subtitle {
        font-size: 24px;
    }
    .help-section .section-title {
        font-size: 32px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Стили для страницы контактов */
.contact-block {
    padding: 80px 0;
    background-color: #fff;
}

.contact-title {
    font-family: 'Play', sans-serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #001a3d;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 50px;
}

.contact-details {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-details h3 {
    font-size: 1.8rem;
    color: #001a3d;
    margin-bottom: 30px;
    font-family: 'Play', sans-serif;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #005d8c;
    min-width: 25px;
    margin-top: 5px;
}

.contact-item strong {
    display: block;
    margin-bottom: 8px;
    color: #001a3d;
    font-size: 1.1rem;
}

.contact-item div {
    flex: 1;
}

.phone-large {
    font-family: 'Play', sans-serif;
    font-size: 1.8rem;
    color: #005d8c;
    margin-bottom: 10px;
    font-weight: 700;
}

.phone-large span {
    color: #003379;
    border-bottom: 2px solid #003379;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: #001a3d;
    margin-bottom: 15px;
    font-family: 'Play', sans-serif;
}

.contact-form p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1rem;
}

.simple-form input,
.simple-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.simple-form input:focus,
.simple-form textarea:focus {
    outline: none;
    border-color: #005d8c;
}

.simple-form textarea {
    min-height: 120px;
    resize: vertical;
}

.map {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.map .section-title {
    margin-bottom: 40px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 992px) {
    .contact-grid {
        gap: 30px;
    }
    
    .contact-details,
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-details,
    .contact-form {
        padding: 25px;
    }
    
    .contact-details,
    .contact-form {
        background-color: transparent;
        border: none;
        box-shadow: none;
    }
    
    .phone-large {
        font-size: 1.5rem;
    }
    
    .map {
        padding: 50px 0;
    }
    
    .map-container {
        height: 300px;
    }
}

/* Стили для изображений в футере */
.footer-logo img {
    filter: brightness(0) invert(1);
    width: 100%;
    height: auto;
}

/* Стили для изображений в разделе "О компании" */
.about-image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Стили для изображений в карточках товаров */
.product-card .product-img {
    background-size: cover;
    background-position: center;
}

/* Стили для формы обратной связи перед футером */
.callback-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.callback-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .callback-wrapper {
        flex-direction: row;
    }
}

.callback-content {
    padding: 40px;
    background-color: #001a3d;
    color: #fff;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.callback-title {
    font-family: 'Play', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #f2c94c;
}

.callback-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
}

.callback-content::after {
    content: "";
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 120px;
    height: 120px;
    background-image: url("data:image/svg+xml,%3Csvg fill='%23ffffff' width='800px' height='800px' viewBox='0 0 32 32' id='icon' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3Eindustry%3C/title%3E%3Cpath d='M29.53,6.15a1,1,0,0,0-1,0L20,10.38V7a1,1,0,0,0-1.45-.89L10,10.38V3A1,1,0,0,0,9,2H3A1,1,0,0,0,2,3V28H30V7A1,1,0,0,0,29.53,6.15ZM22,26H18V19h4Zm6,0H24V18a1,1,0,0,0-1-1H17a1,1,0,0,0-1,1v8H4V4H8v9.62l10-5v5l10-5Z' transform='translate(0 0)'/%3E%3Crect id='_Transparent_Rectangle_' data-name=' Transparent Rectangle ' class='cls-1' width='32' height='32'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.callback-form {
    padding: 40px;
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.callback-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.callback-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.callback-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f2c94c;
    font-weight: bold;
}

.simple-form input,
.simple-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.simple-form input:focus,
.simple-form textarea:focus {
    outline: none;
    border-color: #005d8c;
}

.simple-form textarea {
    min-height: 120px;
    resize: vertical;
}

.simple-form .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

@media (max-width: 768px) {
    .callback-section {
        padding: 50px 0;
    }
    
    .callback-wrapper {
        padding: 0;
    }
    
    .callback-content,
    .callback-form {
        padding: 30px;
    }
    
    .callback-title {
        font-size: 2rem;
    }
}

/* Стили для модального окна заказа обратного звонка */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background-color: #fff;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background-color: #005d8c;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.close-btn {
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.close-btn:hover {
    color: #f2c94c;
}

.modal-body {
    padding: 30px;
}

.modal-body .form-group {
    margin-bottom: 20px;
}

.modal-body input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.modal-body input:focus {
    outline: none;
    border-color: #005d8c;
}

.modal-body .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

/* Адаптивность для модального окна */
@media (max-width: 768px) {
    .modal-content {
        margin: 20px;
        max-width: calc(100% - 40px);
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-header {
        padding: 15px;
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .modal-overlay {
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .modal-content {
        margin: 0;
        max-width: calc(100% - 20px);
    }
}
