.static-page-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.static-page-container h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #3498db;
    padding-bottom: 0.5rem;
}

.last-updated {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 2rem;
}

.page-section {
    margin-bottom: 2.5rem;
}

.page-section h2 {
    color: #34495e;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.page-section h3 {
    color: #4a5568;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    margin-top: 1.25rem;
}

.page-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.feature-list,
.info-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li,
.info-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.info-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 1.5rem;
}

/* Cookies table */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem;
    font-size: 0.95rem;
}

.cookies-table thead th {
    background: #f1f5f9;
    color: #2c3e50;
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 2px solid #cbd5e0;
    font-weight: 600;
}

.cookies-table tbody td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #555;
    line-height: 1.6;
    vertical-align: top;
}

.cookies-table tbody tr:last-child td {
    border-bottom: none;
}

.cookies-table tbody tr:nth-child(even) {
    background: #fafbfc;
}

.cookies-table code {
    background: #edf2f7;
    color: #2d3748;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.9em;
}

/* Refund summary box */
.refund-summary {
    background: #ebf8ff;
    border-left: 4px solid #3498db;
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    margin: 0 0 2rem;
}

.refund-summary strong {
    display: block;
    font-size: 1.15rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.refund-summary p {
    margin: 0;
    color: #444;
    line-height: 1.6;
}

/* Responsive design */
@media (max-width: 768px) {
    .static-page-container {
        margin: 1rem;
        padding: 1.5rem;
    }

    .static-page-container h1 {
        font-size: 2rem;
    }

    .page-section h2 {
        font-size: 1.5rem;
    }

    .cookies-table {
        font-size: 0.85rem;
    }

    .cookies-table thead th,
    .cookies-table tbody td {
        padding: 0.5rem 0.6rem;
    }
}
