.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);
}

.one {
    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;
}

.two {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.7;
    position: relative;
}

.three {
    font-size: 1.4rem;
    font-weight: 900;
    text-align: center;
    padding: 20px;
    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;
}
