/* Data Sharing Page Styles */

.policy-section {
    padding: 56px 0;
    background: #fff;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.policy-card {
    text-align: center;
    padding: 28px 20px;
    background: #F9FAFB;
    border-radius: 12px;
    transition: transform 0.3s;
}

.policy-card:hover {
    transform: translateY(-5px);
}

.policy-icon {
    font-size: calc(44px * var(--find-font-scale));
    color: var(--find-accent-cyan);
    margin-bottom: 16px;
    display: inline-block;
}

.policy-card h3 {
    font-size: calc(20px * var(--find-font-scale));
    margin-bottom: 10px;
    color: var(--find-text-primary);
}

.policy-card p {
    font-size: calc(15px * var(--find-font-scale));
    color: var(--find-text-secondary);
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 56px 0;
    background: var(--find-bg-secondary);
}

.section-title {
    text-align: center;
    font-size: calc(32px * var(--find-font-scale));
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--find-text-primary);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 190px;
}

.step-circle {
    width: 52px;
    height: 52px;
    background: #fff;
    border: 2px solid var(--find-accent-cyan);
    color: var(--find-accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(24px * var(--find-font-scale));
    font-weight: 700;
    margin: 0 auto 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.step-connector {
    flex: 1;
    height: 2px;
    background: var(--find-border-color);
    margin-top: 26px;
}

.step-item h4 {
    font-size: calc(18px * var(--find-font-scale));
    margin-bottom: 6px;
    color: var(--find-text-primary);
}

.step-item p {
    font-size: calc(14px * var(--find-font-scale));
    color: var(--find-text-secondary);
    line-height: 1.5;
}

/* Apply Section */
.apply-section {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--find-accent-cyan), #003380);
    color: #fff;
    text-align: center;
}

.apply-content h2 {
    font-size: calc(32px * var(--find-font-scale));
    margin-bottom: 12px;
    font-weight: 700;
}

.apply-content p {
    font-size: calc(16px * var(--find-font-scale));
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 28px;
}

.apply-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--find-accent-cyan);
}

.btn-primary {
    background: #fff;
    color: var(--find-accent-cyan);
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    border: 2px solid #fff;
}

.btn-primary:hover {
    background: transparent;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .step-connector {
        width: 2px;
        height: 28px;
        margin: 0;
    }

    .step-item {
        width: 100%;
    }
}
