

.hero-section p br {
    display: block;
    content: "";
    margin: 40px auto;
    width: 60px;
    height: 4px;
    background-color: var(--primary-blue);
    opacity: 0.3;
    border-radius: 2px;
}

.paragraph-section {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--primary-black);
}

.paragraph-section p:nth-of-type(1) {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-blue);
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.02em;
}

.paragraph-section p:nth-of-type(2) {
    text-align: center;
    padding: 40px;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
}

.paragraph-section p:nth-of-type(3) {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-muted);
    padding: 20px;
    border-top: 1px dashed var(--card-date);
    margin-top: 20px;
}

@media (max-width: 768px) {
    .paragraph-section {
        padding: 40px 10px;
    }

    .paragraph-section p:nth-of-type(1) {
        font-size: 1.3rem;
    }

    .paragraph-section p:nth-of-type(2) {
        font-size: 1rem;
        padding: 20px;
    }

    .paragraph-section p:nth-of-type(3) {
        font-size: 1rem;
        padding: 10px;
    }
}

.paragraph-section p {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease-out forwards;
}

.paragraph-section p:nth-child(2) { 
    animation-delay: 0.2s; 
}

.paragraph-section p:nth-child(3) { 
    animation-delay: 0.4s; 
}