/* Advantages Container */
.comparison-details-container-2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Service Category Card */
.comparison-service-category {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    position: relative;
    overflow: hidden;
}

.comparison-service-category:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Service Title */
.comparison-service-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5f3f;
    margin-bottom: 1.5rem;
}

.comparison-service-title span {
    line-height: 1.2;
}

/* Icon Styling */
.advantage-icon {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 2px 8px rgba(34, 174, 161, 0.2));
    transition: all 0.3s ease;
}

.comparison-service-category:hover .advantage-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(34, 174, 161, 0.3));
}

/* Savings Section */
.advantages-2-savings {
    background: linear-gradient(135deg, #f0faf8 0%, #e6f7f5 100%);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.advantages-2-savings-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a5f3f;
    margin-bottom: 1rem;
}

.key-facts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

/* Circle Animation Container */
.advantages-circle {
    display: inline-block;
}

/* Savings Text */
.advantages-2-savings-hint {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.advantages-2-savings-money {
    font-size: 1.75rem;
    font-weight: 700;
    color: #22aea1;
    margin: 0.25rem 0;
}

/* Service Text */
.comparison-service-text {
    color: #333;
}

/* Benefits List */
.comparison-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-benefits-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #333;
}

.comparison-benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #22aea1;
    font-size: 1.2rem;
    font-weight: bold;
}

.comparison-benefits-list strong {
    color: #1a5f3f;
    font-weight: 600;
}

.comparison-underline {
    text-decoration: underline;
    text-decoration-color: #22aea1;
    text-underline-offset: 2px;
}

/* Highlight Box */
.comparison-highlight-text {
    background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid #ffe4c4;
}

.comparison-section-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a5f3f;
    margin-bottom: 1rem;
}

.comparison-highlight-text .comparison-benefits-list {
    margin-bottom: 1rem;
}

.comparison-emphasis {
    color: #ff6b35;
    font-weight: 700;
}

.comparison-text-block {
    font-size: 0.95rem;
    color: #666;
    margin-top: 1rem;
    font-style: italic;
}

/* Flex Utilities */
.fx-row {
    display: flex;
    flex-direction: row;
}

.fx-column {
    display: flex;
    flex-direction: column;
}

.center {
    align-items: center;
    justify-content: center;
}

.full-size {
    width: 100%;
}

.flex {
    flex: 1;
}

.wrap {
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .comparison-details-container {
        padding: 0;
    }
    
    .comparison-service-category {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .comparison-service-title {
        font-size: 1.25rem;
        gap: 0.75rem;
    }
    
    .advantage-icon {
        width: 40px;
        height: 40px;
    }
    
    .key-facts {
        flex-direction: column;
        gap: 1rem;
    }
    
    .advantages-2-savings-money {
        font-size: 1.5rem;
    }
    
    .comparison-highlight-text {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .comparison-service-category {
        padding: 1rem;
        border-radius: 8px;
    }
    
    .comparison-service-title {
        font-size: 1.1rem;
    }
    
    .advantage-icon {
        width: 36px;
        height: 36px;
    }
    
    .advantages-2-savings {
        padding: 1rem;
    }
    
    .advantages-2-savings-money {
        font-size: 1.25rem;
    }
    
    .comparison-benefits-list li {
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }
    
    .comparison-highlight-text {
        padding: 1.25rem;
    }
    
    .comparison-section-subtitle {
        font-size: 1.1rem;
    }
}

/* Print Styles */
@media print {
    .comparison-service-category {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
        margin-bottom: 1rem;
    }
    
    .advantage-icon {
        filter: none;
    }
}
