.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1.1rem;
    color: white;
}

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

.comparison-table th {
    background-color: rgba(0, 191, 255, 0.2);
    font-weight: bold;
}

.comparison-table tr:hover {
    background-color: rgba(0, 191, 255, 0.05);
}

.comparison-table .feature {
    width: 30%;
}

.comparison-table .product {
    width: 35%;
    text-align: center;
}

.check {
    color: #4CAF50;
    font-weight: bold;
}

.cross {
    color: #f44336;
    font-weight: bold;
}

.comparison-section {
    padding: 40px 0;
}

.cta-section {
    text-align: center;
    padding: 60px 0;
    background: rgba(0, 191, 255, 0.05);
    border-radius: 8px;
    margin: 40px 0;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #0088cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
}
