.main-three-part-grid-container .about-page {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 4px 0 8px;
    box-sizing: border-box;
}

.about-hero {
    padding: 28px 28px 24px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f2f7ff 0%, #fafcff 55%, #fff 100%);
    border: 1px solid #e3edff;
    text-align: center;
}

.about-hero-logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}

.about-hero-title {
    margin: 0 0 10px;
    font-size: 1.35rem;
    font-weight: 700;
    color: #222;
    line-height: 1.35;
}

.about-hero-desc {
    margin: 0 auto;
    max-width: 640px;
    font-size: .875rem;
    line-height: 1.75;
    color: #666;
}

.about-hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.about-hero-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    font-size: .75rem;
    color: #1677ff;
    background: rgba(22, 119, 255, 0.08);
    border: 1px solid rgba(22, 119, 255, 0.18);
    border-radius: 999px;
}

.about-section {
    margin-top: 28px;
}

.about-section-title {
    margin: 0 0 14px;
    padding-left: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    border-left: 3px solid #1677ff;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.about-feature-card {
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.about-feature-card:hover {
    border-color: rgba(22, 119, 255, 0.35);
    box-shadow: 0 4px 14px rgba(22, 119, 255, 0.06);
}

.about-feature-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.about-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(64, 158, 255, 0.88), rgba(22, 119, 255, 0.92));
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.about-feature-card h3 {
    margin: 0;
    font-size: .95rem;
    font-weight: 600;
    color: #1677ff;
    line-height: 1.3;
}

.about-feature-card p {
    margin: 0;
    font-size: .8125rem;
    line-height: 1.65;
    color: #666;
}

.about-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.about-info-card {
    padding: 18px 20px;
    background: #fafafa;
    border: 1px solid #efefef;
    border-radius: 8px;
}

.about-info-card-wide {
    grid-column: 1 / -1;
}

.about-info-card h3 {
    margin: 0 0 8px;
    font-size: .92rem;
    font-weight: 600;
    color: #333;
    line-height: 1.35;
}

.about-info-card p {
    margin: 0;
    font-size: .8125rem;
    line-height: 1.7;
    color: #666;
}

.about-info-card a {
    color: #1677ff;
    text-decoration: none;
}

.about-info-card a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .about-hero {
        padding: 22px 18px 20px;
    }

    .about-feature-grid,
    .about-info-grid {
        grid-template-columns: 1fr;
    }
}
