
.price-table {
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* Header Styles */
.comparison-table thead th {
    padding: 20px 15px;
    text-align: center;
    vertical-align: top;
    border-right: 1px solid #c8d3e0;
    border-bottom: 1px solid #c8d3e0;
}

.feature-column {
    background-color: #f8f9fa;
    width: 200px;
    min-width: 200px;
}

.transfer-goat {
    background-color: #102b54;
    color: white;
    width: 250px;
}

.empowerly,
.quad,
.spark,
.ivy-wise {
    color: #102b54;
    width: 220px;
}

.service-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 8px;
    color: #102b54;
    background-color: #e5f2ff !important;
}

.transfer-goat .service-name {
    background-color: rgba(255, 255, 255, 0.2);
}

.empowerly .service-name,
.quad .service-name,
.spark .service-name,
.ivy-wise .service-name {
    background-color: rgba(255, 255, 255, 0.8);
}

.pricing {
    font-size: 14px;
    line-height: 1.4;
    color: #102b54;
}

.transfer-goat .pricing {
    color: white;
}

.pricing div {
    margin-bottom: 8px;
    text-align: left;
}

.pricing strong {
    font-weight: 700;
    font-size: 20px;
}

/* Body Styles */
.comparison-table tbody td {
    padding: 30px 20px;
    vertical-align: top;
    border-right: 1px solid #c8d3e0;
    border-bottom: 1px solid #c8d3e0;
}

.feature-label {
    font-weight: bold;
    color: #102b54;
    font-size: 20px;
}

.transfer-goat-cell {
    background-color: #102b54;
    color: white;
}

.empowerly-cell,
.quad-cell,
.spark-cell,
.ivy-wise-cell {
    background-color: #fff;
    color: #102b54;
    font-weight: 500;
}

.check-icon img,
.cross-icon img {
    width: 25px;
    height: 25px;
    object-fit: cover;
    margin-bottom: 8px;
}

.na-text {
    color: #718096;
    font-style: italic;
    font-size: 16px;
    font-weight: bold;
}

.feature-text {
    font-size: 14px;
    line-height: 1.5;
}

.transfer-goat-cell .feature-text {
    color: rgba(255, 255, 255, 0.95);
}

/* Responsive Design */
@media (max-width: 768px) {
    .comparison-table thead th,
    .comparison-table tbody td {
        min-width: 180px;
    }

    .comparison-table thead th:first-child {
        min-width: 150px !important;
    }

    .service-name {
        font-size: 18px;
    }

    .feature-label {
        font-size: 18px !important;
        min-width: 150px !important;
    }
}
