.about-page h1,
.about-page h2,
.about-page h3,
.about-page h4,
.about-page h5,
.about-page h6 {
    margin-top: 1.20rem;
    color: #b80050;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

/* Desktop sizes */
.about-page h1 {
    font-size: 2rem;
}

.about-page h2 {
    font-size: 1.7rem;
}

.about-page h3 {
    font-size: 1.5rem;
}

.about-page h4 {
    font-size: 1.25rem;
}

.about-page h5 {
    font-size: 1.1rem;
}

.about-page h6 {
    font-size: 1rem;
    font-weight: 500;
}

.about-page p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #333;
}

/* Lists */
.about-page ul,
.about-page ol {
    margin: 1rem 0 1.5rem 1.5rem;
    padding-left: 1rem;
}

.about-page ul li,
.about-page ol li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Blockquotes */
.about-page blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    background: #f5f5f5;
    border-left: 4px solid #b80050;
    font-style: italic;
    color: #555;
}

/* ===== Consulting Steps Section ===== */
.consulting-steps {
    margin: 4rem auto;
    padding: 0 1rem;
    /* max-width: 960px; */
    width: 100%;
}

.section-title {
    text-align: center;
    color: #b80050;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
}

.step-box {
    width: 70%;
    background: #fff;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.step-box.left {
    align-self: flex-start;
    border-left: 6px solid #b80050;
}

.step-box.right {
    align-self: flex-end;
    border-right: 6px solid #b80050;
}

.step-number {
    display: inline-block;
    margin-right: 0.75rem;
    background-color: #b80050;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-weight: bold;
    font-size: 1rem;
}

.step-box h3 {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    color: #222;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.step-box p,
.step-box ul {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.step-box ul {
    padding-left: 1.25rem;
    margin-top: 0.75rem;
}

/* ========================
   Responsive tweaks
=========================== */
@media (max-width: 768px) {
    .about-page h1 {
        font-size: 1.6rem;
    }

    .about-page h2 {
        font-size: 1.4rem;
    }

    .about-page h3 {
        font-size: 1.25rem;
    }

    .about-page h4 {
        font-size: 1.1rem;
    }

    .about-page h5 {
        font-size: 1rem;
    }

    .about-page h6 {
        font-size: 0.95rem;
    }

    .about-page blockquote {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .step-box {
        width: 100%;
    }

    .step-box.left,
    .step-box.right {
        align-self: center;
        border-left: 6px solid #b80050;
        border-right: none;
    }
}