/* Compare Section */
.compare-section {
    padding: 4rem 0 8rem 0;
}
.compare-table-container {
    padding: 2rem;
    border-radius: 15px;
    overflow-x: auto;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.compare-table th {
    padding: 1.5rem 1rem;
    font-size: 1.2rem;
}
.compare-table th.paid {
    color: var(--primary);
}
.compare-table thead tr {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.compare-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.compare-table tbody tr:nth-last-child(2) {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.compare-table tbody tr:last-child {
    border-bottom: none;
}
.compare-cell {
    padding: 1.5rem 1rem;
}
.compare-cell.feature {
    font-weight: 600;
}
.check-icon {
    width: 1.3rem;
    height: 1.3rem;
    vertical-align: middle;
}
.cross-icon {
    color: #ff4d4d;
    font-size: 2rem;
}

.compare-table th:not(:first-child),
.compare-table td:not(:first-child) {
    text-align: center;
}
