body {
 font-family: sans-serif;
 padding: 20px;
 background-color: turquoise;
 }
p {
 color: white;
}
        .calculator-card {
 max-width: 400px;
 margin: 0 auto;
 background: pink;
 padding: 20px;
 border-radius: 8px;
 box-shadow: 0 4px 8px rgba(0,0,0,0.1);
 }
        h2 {
 text-align: center;
 color: #333;
 }
        .service-item {
 display: flex;
 justify-content: space-between;
 margin-bottom: 15px;
 align-items: center;
 }
        .service-name {
 font-weight: bold;
 }
        .price {
 color: #555;
 }
        input[type="number"] {
 width: 60px; padding: 5px;
background-color: lightpink
 }
        .total-section {
 margin-top: 20px;
 font-size: 1.2em;
 font-weight: bold;
 text-align: center;
 border-top: 2px solid #eee;
 padding-top: 15px;
 }
        #totalCost {
 color: #2c3e50;
 }