.static-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 8px 48px;
}

.static-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    padding: 4px 0 18px;
    font-size: 13px;
    color: #888;
}

.static-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.15s;
}

.static-breadcrumb a:hover { color: #ff7f50; }
.static-breadcrumb .sep { color: #ccc; margin: 0 2px; }
.static-breadcrumb .current { color: #222; font-weight: 600; }

.static-page-header {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    padding: 28px 32px;
    margin-bottom: 16px;
    text-align: center;
}

.static-page-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.static-subtitle {
    font-size: 15px;
    color: #777;
    margin: 0;
}

.static-page-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    padding: 32px 36px;
}

.static-section { margin-bottom: 32px; }
.static-section:last-child { margin-bottom: 0; }

.static-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.static-section-title::before {
    content: '';
    width: 4px;
    height: 18px;
    background: #ff7f50;
    border-radius: 2px;
    flex-shrink: 0;
}

.static-subsection-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 22px 0 10px;
}

.static-text {
    font-size: 14px;
    line-height: 1.85;
    color: #555;
    margin: 0 0 14px;
}

.static-list {
    margin: 12px 0 16px;
    padding-left: 22px;
}

.static-list li {
    font-size: 14px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 8px;
}

.static-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 28px 0;
}

.static-highlight {
    background: #fff8f5;
    border: 1px solid #ffe0d4;
    border-left: 4px solid #ff7f50;
    border-radius: 12px;
    padding: 20px 22px;
    margin: 18px 0;
}

.static-highlight-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.static-highlight-text {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.static-contact {
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 20px 22px;
    margin: 16px 0;
}

.static-contact-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.static-contact-item {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 6px;
}

.static-warning {
    background: #fffbf0;
    border: 1px solid #ffe8a3;
    border-left: 4px solid #e6a23c;
    border-radius: 12px;
    padding: 20px 22px;
    margin: 16px 0;
}

.static-warning-title {
    font-size: 15px;
    font-weight: 600;
    color: #856404;
    margin-bottom: 8px;
}

.static-warning-text {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.static-link {
    color: #ff7f50;
    text-decoration: none;
    font-weight: 500;
}

.static-link:hover { text-decoration: underline; }

.static-icon-accent {
    color: #ff7f50;
    margin-right: 6px;
}

.static-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.static-feature-card {
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    padding: 22px 20px;
    text-align: center;
    transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.static-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border-color: #ffe0d4;
}

.static-feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    border-radius: 12px;
    background: #fff0eb;
    color: #ff7f50;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.static-feature-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

.static-feature-desc {
    font-size: 13px;
    line-height: 1.65;
    color: #666;
}

@media (max-width: 768px) {
    .static-page-header { padding: 22px 20px; }
    .static-page-header h1 { font-size: 22px; }
    .static-page-card { padding: 22px 20px; }
    .static-features { grid-template-columns: 1fr; }
}
