/* Desktop: 1024px - 1439px (three-column layout) */
/* Large Desktop: 1440px+ (wide three-column with max-width constraints) */

.advanced-tariff-widget {
    font-family: 'Roboto', sans-serif;
    margin: 0 auto;
    max-width: 1200px;
}

.tariff-button-container {
	color:black !important;
    text-align: center;
    margin: 30px 0;
}

.tariff-button {
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tariff-info {
    margin-top: 20px;
}

.tariff-header {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.tariff-grid {
    
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tariff-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
	margin-top: 15px;
}

.tariff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tariff-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #000;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.tariff-price {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #000;
}

.tariff-description ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.tariff-description li {
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.tariff-description i {
    margin-top: 4px;
    flex-shrink: 0;
}

.fa-check-circle {
    color: #28a745;
}

.fa-times-circle {
    color: #dc3545;
}

/* Responsive adjustments */
@media (min-width: 1440px) {
    .tariff-grid {
        
        max-width: 1400px;
        margin: 0 auto;
    }
}


@media (max-width: 767px) {
    .tariff-button-container {
        margin: 20px 0;
    }
    
    .tariff-header {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .tariff-grid {
        grid-template-columns: 1fr;
    }
    
    .tariff-card h4 {
        font-size: 20px;
    }
    
    .tariff-price {
        font-size: 22px;
    }
}