/* Management Fee Details Styling */
.management-fee {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.management-fee-content {
    margin-top: 30px;
}

.billing-details,
.contract-terms {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.billing-details:hover,
.contract-terms:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.billing-details h3,
.contract-terms h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    text-align: center;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    min-height: 50px;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item strong {
    color: var(--text-dark);
    font-weight: 600;
    flex: 1;
    font-size: 1rem;
    line-height: 1.4;
}

.detail-item span {
    color: var(--primary-color);
    font-weight: 500;
    text-align: right;
    flex: 1;
    font-size: 1rem;
    line-height: 1.4;
}

/* Ensure equal height columns */
.management-fee .row {
    display: flex;
    align-items: stretch;
}

.management-fee .col-md-6 {
    display: flex;
    flex-direction: column;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .billing-details,
    .contract-terms {
        margin-bottom: 30px;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 0;
    }
    
    .detail-item span {
        text-align: left;
        font-weight: 600;
        color: var(--primary-color);
    }
    
    .billing-details h3,
    .contract-terms h3 {
        font-size: 1.3rem;
    }
}

