body {
            margin: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
            background-color: #f5f7fa;
            color: #1f2937;
            line-height: 1.6;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 24px;
        }

        h1 {
            font-size: 28px;
            margin-bottom: 8px;
        }

        h2 {
            font-size: 22px;
            margin: 40px 0 16px;
            border-left: 4px solid #2563eb;
            padding-left: 12px;
        }

        p.description {
            color: #4b5563;
            max-width: 800px;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background-color: #ffffff;
            margin-top: 16px;
            box-shadow: 0 1px 4px rgba(0,0,0,0.05);
        }

        table th,
        table td {
            padding: 12px 14px;
            border-bottom: 1px solid #e5e7eb;
            vertical-align: top;
        }

        table th {
            width: 35%;
            background-color: #f9fafb;
            font-weight: 600;
            text-align: left;
            color: #111827;
        }

        table tr:last-child td,
        table tr:last-child th {
            border-bottom: none;
        }

        .status {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 600;
        }

        .status.active {
            background-color: #dcfce7;
            color: #166534;
        }

        .status.inactive {
            background-color: #fee2e2;
            color: #991b1b;
        }

        .faq-item {
            background-color: #ffffff;
            margin-bottom: 12px;
            padding: 16px;
            border-radius: 6px;
            box-shadow: 0 1px 4px rgba(0,0,0,0.05);
        }

        .faq-item h3 {
            margin: 0 0 8px;
            font-size: 16px;
        }

        .faq-item p {
            margin: 0;
            color: #374151;
        }

        .summary {
            background-color: #ffffff;
            padding: 24px;
            margin-top: 32px;
            border-radius: 8px;
            box-shadow: 0 1px 6px rgba(0,0,0,0.06);
        }

        .summary ul {
            padding-left: 18px;
        }

        .summary li {
            margin-bottom: 6px;
        }

        footer {
            margin-top: 48px;
            padding: 16px 0;
            text-align: center;
            font-size: 13px;
            color: #6b7280;
        }

        .action-link {
    display: inline-block;
    margin: 24px auto;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background-color: #2563eb;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.action-link:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
}

.action-link:active {
    background-color: #1e40af;
    transform: translateY(0);
}

/* Центрування */
.action-link {
    display: block;
    width: fit-content;
}
.company-header {
    background-color: #ffffff;
    padding: 24px 28px;
    margin-bottom: 32px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.company-title {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #111827;
    margin-bottom: 12px;
}

.company-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 15px;
    color: #374151;
}

.company-meta span {
    background-color: #f3f4f6;
    padding: 6px 12px;
    border-radius: 6px;
}