.ecp-dp-container {
    max-width: 1200px; margin: 2rem auto; padding: 0 15px;
}
.ecp-dp-container label {
    display: block; margin-bottom: 12px; font-weight: 600;
}
#ecp-sqft-select {
    padding: 10px; font-size: 16px; border: 1px solid #ccc;
    border-radius: 4px; max-width: 300px; margin-bottom: 30px;
}

.ecp-dp-table {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px;
}
.ecp-package {
    border-radius: 10px; overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    display: flex; flex-direction: column;
}
.ecp-header { padding: 20px 15px; text-align: center; background: #0073aa; color: white; }
.ecp-header h3 { margin: 0; }

.ecp-price-row {
    padding: 15px; text-align: center;
    display: flex; justify-content: center; align-items: center; gap: 6px;
    flex-wrap: wrap;
}
.ecp-starting { font-size: 14px; color: #666; }
.ecp-price { font-size: 32px; font-weight: bold; color: #111; }
.ecp-savings { font-size: 16px; color: #999; text-decoration: line-through; }

.ecp-image { height: 220px; overflow: hidden; }
.ecp-image img { width: 100%; height: 100%; object-fit: cover; }

.ecp-services { padding: 20px; background: #f9f9f9; flex-grow: 1; }
.ecp-services div { padding: 6px 0; font-size: 14px; }

.ecp-cta { padding: 0 20px 20px; text-align: center; }
.ecp-button {
    display: inline-block; background: #28a745; color: white !important;
    text-decoration: none; padding: 12px 24px; border-radius: 6px;
    font-weight: bold; width: 100%; box-sizing: border-box;
}
.ecp-button:hover { opacity: 0.9; }

@media (max-width: 768px) {
    .ecp-dp-table { grid-template-columns: 1fr; }
}