/* Rich Content Sections */
.rich-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 24px;
    font-family: 'Inter', sans-serif;
}

.rich-section {
    margin-bottom: 80px;
}

.rich-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 40px;
    font-family: 'Outfit', sans-serif;
}

/* Privacy Banner */
.privacy-banner {
    background: #ecfdf5;
    border: 1px solid #d1fae5;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.privacy-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.privacy-shield {
    width: 64px;
    height: 64px;
    background: #10b981;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.privacy-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #064e3b;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.privacy-text p {
    color: #047857;
    font-size: 14px;
    margin: 0;
}

.privacy-checks {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.privacy-check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #065f46;
    font-weight: 600;
    font-size: 14px;
}

/* Step Cards */
.step-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.step-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.step-number {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.step-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th {
    background: #2563eb;
    color: white;
    padding: 16px 24px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table td {
    padding: 16px 24px;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
    font-size: 15px;
}

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

.comparison-table tr:hover td {
    background: #f8fafc;
}

.comp-positive {
    color: #10b981;
    font-weight: 600;
}

.comp-negative {
    color: #ef4444;
    font-weight: 600;
}

.comp-advantage {
    color: #10b981;
    font-style: italic;
    font-weight: 500;
}

/* Use Cases */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.use-case-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    background: white;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.use-case-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: inline-block;
    padding: 16px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.use-case-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.use-case-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-banner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .privacy-content {
        flex-direction: column;
    }

    .privacy-checks {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}