/* Procedures Page Styles */

.procedures-detail {
    padding: 3rem 0;
}

.procedure-detail {
    margin-bottom: 4rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.procedure-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
}

.procedure-header h2 {
    font-size: 2rem;
    margin: 0;
}

.procedure-content {
    padding: 2rem;
}

.procedure-description h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.procedure-description h3:first-child {
    margin-top: 0;
}

.procedure-description p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.procedure-description ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.procedure-description ul li {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.procedure-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.comparison-section {
    margin-top: 4rem;
    padding: 3rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.comparison-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-dark);
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table thead {
    background-color: var(--primary-color);
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background-color: var(--bg-light);
}

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

/* Responsive */
@media (max-width: 768px) {
    .procedure-header h2 {
        font-size: 1.5rem;
    }

    .procedure-cta {
        flex-direction: column;
    }

    .procedure-cta .btn {
        width: 100%;
    }

    .comparison-section {
        padding: 2rem 1rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }
}

