.about-page {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 12px 0 72px;
    box-sizing: border-box;
}

.about-hero {
    max-width: 860px;
    margin: 0 auto 32px;
    text-align: center;
}

.about-hero h1 {
    margin: 0 0 16px;
    line-height: 1.1;
    color: #ffffff;
}

.about-intro {
    margin: 0 auto;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    opacity: 0.9;
}

.about-feature {
    position: relative;
    margin-bottom: 28px;
    padding: 34px 28px;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(10, 10, 10, 0.96));
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.30);
}

.about-feature::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 35%);
}

.about-feature-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.about-feature h2,
.about-nav-header h2 {
    margin: 0 0 14px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.15;
    color: #ffffff;
}

.about-feature p,
.about-nav-header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    max-width: 700px;
}

.about-feature .about-feature-label,
.about-nav-header .about-feature-label {
    margin: 0 0 10px;
    color: #d4af37;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
    line-height: 1.4;
    max-width: none;
}

.about-feature p + p {
    margin-top: 16px;
}

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

.about-nav-header {
    max-width: 780px;
    margin: 0 0 20px;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px 22px;
}

.about-card {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    padding: 26px 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    text-decoration: none;
    color: inherit;
    transition:
        border-color 300ms ease,
        background 300ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

.about-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 35%);
}

.about-card > * {
    position: relative;
    z-index: 1;
}

.about-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.42);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.07), rgba(255, 255, 255, 0.018));
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.36);
}

.about-card:focus-visible {
    outline: 2px solid #d4af37;
    outline-offset: 4px;
}

.about-card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 14px;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.08);
    font-size: 1.15rem;
}

.about-card h3 {
    margin: 0 0 12px;
    font-size: 1.35rem;
    color: #ffffff;
    line-height: 1.2;
}

.about-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.about-card-link {
    display: inline-block;
    margin-top: auto;
    padding-top: 18px;
    color: #d4af37;
    font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .about-feature {
        padding: 28px 22px;
    }
}

@media (max-width: 768px) {
    .about-page {
        padding: 28px 20px 56px;
    }

    .about-hero {
        margin-bottom: 28px;
    }
}

@media (min-width: 700px) {
    .about-card {
        flex: 0 1 calc((100% - 22px) / 2);
    }
}

@media (min-width: 981px) {
    .about-card {
        flex: 0 1 calc((100% - 44px) / 3);
    }
}