section p {
    max-width: 800px;
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 1.8;
    color: var(--text-muted);
    text-align: center;
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}

section p strong {
    display: block;
    font-size: clamp(16px, 1.6rem, 22px);
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 600;
}

section p:nth-of-type(1) { animation-delay: 0.1s; }
section p:nth-of-type(2) { animation-delay: 0.3s; }
section p:nth-of-type(3) { animation-delay: 0.5s; }
section p:nth-of-type(4) { animation-delay: 0.7s; }
section p:nth-of-type(5) { animation-delay: 0.9s; }
section p:nth-of-type(6) { animation-delay: 1.1s; }

@media (max-width: 768px) {
    section p {
        max-width: 100%;
        padding: 0 20px;
    }
}