.content-section {
    padding: 3.2rem 0;
    background: linear-gradient(180deg, rgba(237, 243, 255, 0.36), rgba(255, 255, 255, 0.6));
}

.page-title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: #1c2952;
}

.content-wrapper {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 1.6rem;
    position: relative;
}

.content-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: linear-gradient(90deg, #4f46e5, #0ea5e9, #14b8a6);
}

.content-text {
    color: var(--ink-soft);
    line-height: 1.8;
    font-size: 1.02rem;
}

.content-text h2 {
    color: var(--ink);
    font-family: "Outfit", sans-serif;
    font-size: 1.25rem;
    margin: 1.1rem 0 0.5rem;
}

.content-text p + p {
    margin-top: 0.8rem;
}
