/* Стили для страницы О компании */

.about-page {
    padding: 60px 0;
}

.about-page .entry-header {
    margin-bottom: 40px;
    text-align: center;
}

.about-page .entry-title {
    font-size: 42px;
    font-weight: 700;
    color: #0071CE;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.about-page .entry-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #0071CE;
}

/* Блок с описанием компании */
.about-company-description {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.company-description-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}

/* Блок с реквизитами компании */
.company-info-block {
    margin-bottom: 50px;
}

.company-info-title {
    font-size: 32px;
    font-weight: 600;
    color: #0071CE;
    margin-bottom: 30px;
    text-align: center;
}

.company-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.company-info-section {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-info-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #0071CE;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e1e1e1;
}

.info-group {
    margin-bottom: 15px;
}

.info-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.info-value {
    color: #555;
}

.info-value a {
    color: #0071CE;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-value a:hover {
    color: #005299;
    text-decoration: underline;
}

/* Блок с преимуществами компании */
.company-advantages {
    margin-bottom: 50px;
}

.advantages-title {
    font-size: 32px;
    font-weight: 600;
    color: #0071CE;
    margin-bottom: 30px;
    text-align: center;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.advantage-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    margin-bottom: 20px;
    color: #0071CE;
}

.advantage-icon svg {
    width: 64px;
    height: 64px;
}

.advantage-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.advantage-description {
    color: #666;
    line-height: 1.6;
}

/* Форма для связи */
.contact-form-block {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-title {
    font-size: 32px;
    font-weight: 600;
    color: #0071CE;
    margin-bottom: 20px;
    text-align: center;
}

.contact-form-description {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 18px;
}

/* Адаптивная верстка */
@media (max-width: 1200px) {
    .company-info-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .about-page {
        padding: 40px 0;
    }

    .about-page .entry-title {
        font-size: 36px;
    }

    .company-info-title,
    .advantages-title,
    .contact-form-title {
        font-size: 28px;
    }

    .company-description-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .about-company-description {
        padding: 30px;
    }

    .company-info-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .about-page .entry-title {
        font-size: 32px;
    }

    .company-info-title,
    .advantages-title,
    .contact-form-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .about-page {
        padding: 30px 0;
    }

    .about-company-description {
        padding: 20px;
    }

    .contact-form-block {
        padding: 25px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .about-page .entry-title {
        font-size: 28px;
    }
}
