/* App badge bar — prominent notice that this is the app's privacy policy */
.app-badge-bar {
    background: #fff7ed;
    border-bottom: 2px solid #fed7aa;
    padding: 12px 0;
    font-size: 0.875rem;
    color: #9a3412;
    text-align: center;
}

.app-badge-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.app-badge-bar i {
    font-size: 1rem;
    color: var(--primary);
    flex-shrink: 0;
}

/* Page header */
.privacy-header {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border-bottom: 1px solid #fed7aa;
    padding: 48px 0 36px;
}

.privacy-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.privacy-header p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Main content area */
.privacy-content {
    padding: 48px 0 64px;
}

.privacy-content .container {
    max-width: 760px;
}

/* Individual policy sections */
.policy-section {
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid #e2e8f0;
}

.policy-section--last {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.policy-section p {
    font-size: 0.9375rem;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 10px;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-section ul {
    margin: 10px 0 10px 0;
    padding-left: 20px;
}

.policy-section ul li {
    font-size: 0.9375rem;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 6px;
    padding-left: 4px;
}

.policy-section a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.policy-section a:hover {
    text-decoration: underline;
}

/* Info block — contact details, company info */
.info-block {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px 20px;
    margin: 12px 0;
}

.info-block p {
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.info-block p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .privacy-header h1 {
        font-size: 1.5rem;
    }

    .privacy-content {
        padding: 32px 0 48px;
    }

    .app-badge-bar .container {
        text-align: center;
    }
}
