.static-page {
    padding: 80px 0;
    background: var(--fb-bg);
    min-height: calc(100vh - 200px);
}
.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}
.page-header {
    text-align: center;
    margin-bottom: 60px;
}
.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--fb-heading);
    margin-bottom: 16px;
}
.page-subtitle {
    font-size: 1.25rem;
    color: var(--fb-gray-text);
}
.content-section {
    margin-bottom: 48px;
}
.content-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--fb-heading);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--fb-accent);
}
.content-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--fb-text);
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 32px;
}
.feature-item {
    background: var(--fb-card-bg);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid var(--fb-border);
}
.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #3a6f8c, #2f5f78);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-icon svg {
    stroke: white !important;
    color: white;
}
.feature-icon svg path,
.feature-icon svg circle {
    stroke: white !important;
}
.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--fb-heading);
    margin-bottom: 12px;
}
.feature-item p {
    font-size: 0.95rem;
    color: var(--fb-gray-text);
}
.contact-section {
    background: var(--fb-card-bg);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--fb-border);
}
