
        .price-container {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .price-box {
            background: rgba(0, 0, 0, 0.6);
            border: 3px solid #e22b63;
            border-radius: 15px;
            width: 300px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }

        .box-header {
            background: #e22b63;
            color: white;
            padding: 12px 20px;
            text-align: center;
            font-weight: bold;
            font-size: 20px;
            border-radius: 10px 10px 0 0;
        }

        .price-list {
            padding: 20px;
        }

        .price-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px dotted #e22b63;
            font-size: 17px;
        }

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

        .service-name {
            flex: 1;
			color: white;
        }

        .price {
            font-weight: bold;
            color: white;
        }

        @media (max-width: 768px) {
            .price-container {
                flex-direction: column;
                align-items: center;
            }
            .price-box {
                width: 90%;
            }
        }



        .card-img-top {
      height: 350px;
      object-fit: cover;
    }
    .card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s;
      background-color: black;
      padding: 20px;
    }
    .card:hover {
      transform: translateY(-10px);
    }
    .btn-learn-more {
      background-color: #e22b63; /* Gold color */
      border: none;
      padding: 8px 30px;
      border-radius: 30px;
      font-weight: 600;
    }
    .btn-learn-more:hover {
      background-color: #b8972e;
    }
    