.comparison {
    background: linear-gradient(135deg, #008B8B 0%, #006666 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: white;
    padding: 80px 5%;
    text-align: center;
}

.comparison .section-title {
    color: white;
    animation: fadeIn 0.8s ease-out;
}

.comparison .section-title::after {
    background-color: #FFD700;
}

.comparison-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 auto;
    max-width: 850px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease-out;
    transform: translateZ(0);
    transition: all 0.3s ease;
}

.comparison-table:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.table-header {
    display: flex;
    background: linear-gradient(to right, #f5f5f5, #eaeaea);
    color: #333;
    font-weight: bold;
}

.table-header div {
    flex: 1;
    padding: 18px;
    text-align: center;
    border-right: 1px solid #ddd;
    font-size: 16px;
}

.table-header div:last-child {
    border-right: none;
}

.table-row {
    display: flex;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.table-row:hover {
    background-color: #f9f9f9;
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    flex: 1;
    padding: 18px;
    text-align: center;
    color: #333;
    border-right: 1px solid #eee;
    font-size: 15px;
}

.table-cell:last-child {
    border-right: none;
}

.check-icon {
    color: #008B8B;
    font-size: 24px;
    animation: pulse 2s infinite;
}

.cross-icon {
    color: #ff6b6b;
    font-size: 24px;
}

.talk-btn {
    background: #FFD700;
    color: #333;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    display: inline-block;
    margin-top: 40px;
    border: none;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.2s ease-out;
}

.talk-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
}

.talk-btn:hover {
    background: #f8c800;
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.talk-btn:hover:before {
    left: 100%;
}
