@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&display=swap');

/* Всё что касается шапки (.top, .logo, .info, .dropdown, .search-form и т.д.)
   приходит из catalog.css, который подключён первым в index.html.
   Здесь только стили, специфичные для главной страницы. */

.container {
    font-family: 'PT Serif', serif;
    background-color: rgb(237, 237, 237);
}

.aboutCompany {
    height: 100vh;
}

/* =================== О КОМПАНИИ =================== */

.about-main {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 30px 80px;
}

.about-section {
    margin-bottom: 48px;
}

.about-section h2 {
    font-family: 'PT Serif', serif;
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #000;
}

.about-section h3 {
    font-family: 'PT Serif', serif;
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 14px;
}

.about-section p {
    font-family: 'PT Sans', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 14px;
}

.about-section ul,
.about-section ol {
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    padding-left: 24px;
    margin-top: 12px;
}

.about-section ul li,
.about-section ol li {
    margin-bottom: 8px;
}

/* Цитата / выделенный блок */
.about-quote {
    border-left: 4px solid #000;
    background: #f5f5f5;
    padding: 16px 22px;
    margin: 0 0 20px;
    font-family: 'PT Serif', serif;
    font-size: 17px;
    color: #222;
    line-height: 1.6;
    border-radius: 0 6px 6px 0;
}

/* CTA-секция */
.cta-section {
    background: #111;
    color: #fff;
    padding: 40px 44px;
    border-radius: 12px;
    text-align: center;
}

.cta-section h3 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 12px;
}

.cta-section p {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 40px;
    font-family: 'PT Serif', serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.btn-secondary:hover {
    background: #fff;
    color: #111;
    transform: scale(1.03);
}

/* =====================================================
   АДАПТИВНЫЙ ДИЗАЙН — ГЛАВНАЯ СТРАНИЦА
   ===================================================== */

@media (max-width: 1024px) {
    .about-main {
        max-width: 100%;
        padding: 0 24px 60px;
    }
}

@media (max-width: 768px) {
    .about-main {
        margin: 24px auto;
        padding: 0 16px 48px;
    }

    .about-section { margin-bottom: 32px; }

    .about-section h2 { font-size: 22px; }
    .about-section h3 { font-size: 20px; }
    .about-section p  { font-size: 15px; }

    .about-section ul,
    .about-section ol { font-size: 15px; padding-left: 18px; }

    .about-quote {
        font-size: 15px;
        padding: 12px 16px;
    }

    .cta-section {
        padding: 28px 20px;
        border-radius: 8px;
    }
    .cta-section h3 { font-size: 20px; }
    .cta-section p  { font-size: 14px; margin-bottom: 20px; }

    .cta-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; text-align: center; padding: 13px 24px; }
}

@media (max-width: 480px) {
    .about-section h2 { font-size: 20px; }
    .cta-section h3   { font-size: 18px; }
}