<style>
        body {
            font-family: 'Inter', sans-serif;
        }
        .price-toggle {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
        }
        .price-toggle-label {
            margin-right: 10px;
            font-size: 16px;
            color: #a5a5a5;
        }
        .switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 34px;
        }
        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            -webkit-transition: .4s;
            transition: .4s;
            border-radius: 34px;
        }
        .slider:before {
            position: absolute;
            content: "";
            height: 26px;
            width: 26px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            -webkit-transition: .4s;
            transition: .4s;
            border-radius: 50%;
        }
        input:checked + .slider {
            background-color: #2196F3;
        }
        input:focus + .slider {
            box-shadow: 0 0 1px #2196F3;
        }
        input:checked + .slider:before {
            -webkit-transform: translateX(26px);
            -ms-transform: translateX(26px);
            transform: translateX(26px);
        }
        .slider.round {
            border-radius: 34px;
        }
        .slider.round:before {
            border-radius: 50%;
        }
		.toggle-container {
  			display: flex;
  			justify-content: center; /* Centers horizontally */
  			align-items: center;     /* Centers vertically */
  			height: 10vh;           /* Full viewport height */
		}
/*         .single-card {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding-bottom: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 30px;
        }
        .single-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        .card-top {
            padding: 20px;
            text-align: center;
            border-bottom: 1px solid #eee;
        }
        .card-top img {
            width: 80px;
            height: auto;
            margin-bottom: 15px;
        }
        .card-top h4 {
            font-size: 24px;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        .card-top p {
            font-size: 16px;
            color: #7f8c8d;
        }
        .card-mid {
            padding: 20px;
            text-align: center;
            border-bottom: 1px solid #eee;
        }
        .card-mid h4 {
            font-size: 36px;
            color: #3498db;
            margin-bottom: 0;
        }
        .card-mid span {
            font-size: 18px;
            color: #7f8c8d;
        }
        .card-bottom {
            padding: 20px;
        }
        .card-bottom ul {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }
        .card-bottom ul li {
            font-size: 14px;
            color: #555;
            line-height: 24px;
            border-bottom: 1px solid #eee;
            padding-bottom: 5px;
            margin-bottom: 5px;
        }
        .card-bottom ul li:last-child {
            border-bottom: none;
        } */
        .borders-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #3498db;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-size: 18px;
            transition: background-color 0.3s ease;
            border: 2px solid #3498db;
        }
        .borders-btn:hover {
            background-color: transparent;
            color: #3498db;
        }
        @media (max-width: 991px) {
            .col-lg-4 {
                margin-bottom: 30px;
            }
        }
        @media (max-width: 767px) {
            .col-md-6 {
                margin-bottom: 30px;
            }
        }
        @media (max-width: 575px) {
            .single-card {
                margin-bottom: 30px;
            }
        }
    </style>