/* ==========================================================================
   СТИЛІ ДЛЯ СТОРІНКИ "ПРО КОМПАНІЮ" (about.php)
   ========================================================================== */

/* Шапка сторінки */
.page-about .page-header {
    background: linear-gradient(135deg, #1e293b 0%, #0377c0 100%);
    padding: 80px 0 60px;
    color: #fff;
    text-align: center;
}

.page-about .hero-title {
    margin-bottom: 15px;
    font-size: 36px;
    font-weight: 800;
}

.page-about .hero-desc {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    font-size: 16px;
    line-height: 1.5;
}

/* Основний контент (Текст + Фото) */
.about-content {
    padding: 60px 0;
}

.about-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-col {
    flex: 1;
    min-width: 300px;
}

.about-text-block .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-text-block p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
    font-size: 16px;
}

.about-text-block p:last-child {
    margin-bottom: 0;
}

/* Блок з фотографією */
.about-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-image-placeholder {
    background: #eef6ff;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    border: 2px dashed #0377c0;
}

.about-image-placeholder svg {
    margin-bottom: 15px;
}

.about-image-placeholder p {
    color: #0377c0;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

/* Блок статистики (Досягнення) */
.about-stats {
    background: #f4f4f6;
    padding: 60px 0;
}

.about-stats .section-title {
    margin-bottom: 40px;
    text-align: center;
}

.about-stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.about-stat-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.about-stat-num {
    font-size: 42px;
    font-weight: 800;
    color: #0377c0;
    margin-bottom: 10px;
}

.about-stat-text {
    color: #555;
    font-weight: 500;
    font-size: 15px;
}

/* Заклик до дії (CTA) */
.about-cta {
    padding: 60px 0;
    text-align: center;
}

.about-cta .section-title {
    margin-bottom: 20px;
}

.about-cta-desc {
    color: #555;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-size: 16px;
}

.btn-about-cta {
    padding: 15px 30px;
    font-size: 16px;
    background-color: #0377c0;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(3,119,192,0.3);
}

.btn-about-cta:hover {
    background-color: #025a92;
    transform: translateY(-2px);
    color: #fff;
}