.elementor-2015 .elementor-element.elementor-element-d41bb9e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-0eed11d *//* styles.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a2b4a;
    background-color: #f8f9fa;
}

.comparison-section {
    padding: 60px 20px;


.container {
    max-width: 900px;
    margin: 0 auto;
}

.main-title {
    font-size: 2.5rem;
    color: #1a2b4a;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
}

.accent-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
    margin: 0 auto 50px;
    border-radius: 2px;
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.treatment-card {
    background: white;
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.treatment-card.featured {
    background: linear-gradient(135deg, #1e3a8a 0%, #1a2b4a 100%);
    color: white;
}

.card-title {
    font-size: 1.75rem;
    margin-bottom: 35px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
    color: #1a2b4a;
}

.treatment-card.featured .card-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 15px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    background: #1a2b4a;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    font-weight: bold;
    margin-top: 10px;
}

.treatment-card.featured .feature-icon {
    background: #fbbf24;
    color: #1a2b4a;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a2b4a;
}

.treatment-card.featured .feature-title {
    color: #fbbf24;
}

.feature-desc {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
}

.treatment-card.featured .feature-desc {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
    }
    
    .main-title {
        font-size: 1.75rem;
    }
    
    .intro-text {
        font-size: 0.95rem;
    }
    
    .comparison-grid {
        gap: 20px;
    }
    
    .treatment-card {
        padding: 30px 20px;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 750px;
    }
    
    .treatment-card {
        padding: 35px 30px;
    }
}/* End custom CSS */