/* Price Breakdown Section - Visually separated panel */
.price-breakdown-section {
    margin: 30px auto;
    max-width: 1200px;
}

.price-breakdown-section .column {
    padding: 25px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    border-radius: 12px;
    border: 2px solid #81c784;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.price-breakdown-section h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 1.5em;
    font-weight: 700;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #4CAF50;
}

.price-breakdown-content {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: space-around;
    padding-bottom: 5px;
}

.breakdown-category {
    flex: 1 1 280px;
    min-width: 250px;
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.breakdown-category h4 {
    color: #495057;
    font-size: 1.15em;
    font-weight: 600;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #4CAF50;
}

.breakdown-category ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.breakdown-category li {
    padding: 8px 0;
    font-size: 0.95em;
    color: #6c757d;
    border-bottom: 1px solid #f1f3f5;
}

.breakdown-category li:last-child {
    border-bottom: none;
}

.breakdown-category li strong {
    color: #212529;
    font-weight: 700;
    float: right;
}
