    .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);
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }

    .stat-card {
        background: linear-gradient(135deg, var(--fb-accent), var(--fb-accent-dark));
        color: white;
        padding: 32px;
        border-radius: 16px;
        text-align: center;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 1rem;
        opacity: 0.9;
    }

    .ad-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }

    .ad-type {
        background: var(--fb-card-bg);
        border: 1px solid var(--fb-border);
        border-radius: 16px;
        padding: 28px;
    }

    .ad-type h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--fb-heading);
        margin-bottom: 12px;
    }

    .ad-type p {
        color: var(--fb-text);
        margin-bottom: 16px;
    }

    .ad-type ul {
        padding-left: 20px;
    }

    .ad-type li {
        color: var(--fb-gray-text);
        margin-bottom: 6px;
        font-size: 0.9rem;
    }

    .industry-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .tag {
        background: var(--fb-card-bg);
        border: 1px solid var(--fb-border);
        padding: 8px 20px;
        border-radius: 24px;
        font-size: 0.95rem;
        color: var(--fb-text);
    }

    .contact-section {
        background: var(--fb-card-bg);
        border-radius: 16px;
        padding: 40px;
        border: 1px solid var(--fb-border);
        text-align: center;
    }

    .contact-section p {
        margin-bottom: 12px;
        color: var(--fb-text);
    }

    .contact-section .note {
        font-size: 0.85rem;
        color: var(--fb-gray-text);
        margin-top: 20px;
    }
