/* ==========================================================================
   About page — /about/
   ========================================================================== */

.about-page {
    max-width: 880px;
    margin: 0 auto;
    padding: 32px 24px 80px;
    color: var(--legal-text, #222222);
    line-height: 1.7;
}

/* Hero */
.about-hero {
    text-align: center;
    padding: 24px 0 48px;
    border-bottom: 1px solid var(--legal-border, #d8e5e3);
    margin-bottom: 48px;
}

.about-hero-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--legal-primary, #1b555c);
    margin: 0 0 16px 0;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.about-hero-tagline {
    font-size: 18px;
    color: var(--legal-text-secondary, #545454);
    max-width: 640px;
    margin: 0 auto 32px auto;
    line-height: 1.55;
}

.about-hero-cta {
    display: inline-block;
    padding: 14px 28px;
    background: var(--legal-primary, #1b555c);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    transition: background 0.2s ease-out, transform 0.15s ease-out;
}

.about-hero-cta:hover,
.about-hero-cta:focus-visible {
    background: #134148;
    transform: translateY(-1px);
}

/* Sections */
.about-section {
    margin: 0 0 48px 0;
}

.about-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--legal-primary, #1b555c);
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.about-section-body {
    font-size: 16px;
    color: var(--legal-text, #222222);
}

.about-section-body p {
    margin: 0 0 14px 0;
}

.about-section-body p:last-child {
    margin-bottom: 0;
}

.about-section-body strong {
    color: var(--legal-primary, #1b555c);
    font-weight: 600;
}

.about-section-body ul {
    margin: 16px 0;
    padding: 0 0 0 20px;
    list-style: none;
}

.about-section-body ul li {
    position: relative;
    padding: 0 0 0 20px;
    margin: 0 0 12px 0;
    line-height: 1.65;
}

.about-section-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--legal-primary-soft, #48b5a8);
    border-radius: 50%;
}

/* CTA finale */
.about-cta {
    background: var(--legal-primary-light, #e2f1ef);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    margin-top: 64px;
}

.about-cta-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--legal-primary, #1b555c);
    margin: 0 0 12px 0;
}

.about-cta-body {
    font-size: 15px;
    color: var(--legal-text-secondary, #545454);
    margin: 0 0 20px 0;
}

.about-cta-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--legal-primary, #1b555c);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    transition: background 0.2s ease-out, transform 0.15s ease-out;
}

.about-cta-btn:hover,
.about-cta-btn:focus-visible {
    background: #134148;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .about-page {
        padding: 24px 16px 64px;
    }

    .about-hero-title { font-size: 28px; }
    .about-hero-tagline { font-size: 16px; }
    .about-section-title { font-size: 20px; }
    .about-cta { padding: 24px 20px; }
    .about-cta-title { font-size: 19px; }
}

@media (prefers-reduced-motion: reduce) {
    .about-hero-cta,
    .about-cta-btn { transition: none; }
}
