/* Pricing Plans Horizontal Layout */
	.wrap1 {
    	background: #FEFFEB; /*ex: #f9f9f9*/
    	border: 2px solid #9B00DE;
    	padding: 5px;
}
        .premium-plans {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
	        font-family: sans-serif;
        }
        .premium-plans .plan {
            flex: 1 1 calc(33.333% - 90px); /*adjust width of pricing*/
            max-width: calc(33.333% - 10px); /*adjust width of pricing*/
            background: #D1EDEA; /*ex: #f9f9f9*/
            padding: 10px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            text-align: left;
        }
        @media (max-width: 768px) {
            .premium-plans .plan {
                flex: 1 1 calc(50% - 90px); /*adjust width of pricing*/
                max-width: calc(50% - 10px); /*adjust width of pricing*/
            }
        }
        @media (max-width: 550px) {
            .premium-plans .plan {
                flex: 1 1 100%;
                max-width: 100%;
            }
        }

	#hdfp {
	background-color: #7609EB;
	color: white;
	border: 2px solid #7609EB;
}	

	#hdpp {
	background-color: #A707EB;
	color: white;
	border: 2px solid #A707EB;
}	

	#hdep {
	background-color: #D6006F;
	color: white;
	border: 2px solid #D6006F;
}

	#fp {
	background-color: #7609EB;
	color: white;
	border: 2px solid #7609EB;
	font-size: 15px;
	font-family: sans-serif;
}

	#fp:hover {
	background-color: #401805;
	color: white;
	border: 2px solid #401805;
	font-size: 15px;
	font-family: sans-serif;
}
	#pp {
	background-color: #A707EB;
	color: white;
	border: 2px solid #A707EB;
	font-size: 15px;
	font-family: sans-serif;
}

	#pp:hover {
	background-color: #442366;
	color: white;
	border: 2px solid #442366;
	font-size: 15px;
	font-family: sans-serif;
}
	#ep {
	background-color: #D6006F;
	color: white;
	border: 2px solid #D6006F;
	font-size: 15px;
	font-family: sans-serif;
}

	#ep:hover {
	background-color: #5E006F;
	color: white;
	border: 2px solid #5E006F;
	font-size: 15px;
	font-family: sans-serif;
}

	#features {
	font-size: 18px;
	font-family: sans-serif;
}

	#p-font-size {
	font-size: 18px;
	font-family: sans-serif;
}

	h2 {
	line-height: 30px;
	font-size: 25px;
	font-family: sans-serif;
}
	h1, h2, h3 {
	font-family: sans-serif;
}