.pricing-tables {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
}

.pricing-table {
	flex: 1;
	min-width: 250px;
	max-width: 300px;
	background-color: white;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.pricing-table h5 {
	color: #fff;
	font-size: 2.4rem;
	font-weight: 600;
}

.fas {
	align-items: flex-start;
	color: #ff5765 !important; 
    margin-right: 8px;
}

.pricing-table:hover {
	transform: translateY(-5px);
}

.table-header {
	padding: 25px 20px;
	text-align: center;
	color: white;
	font-weight: bold;
}

.table-header.red {
	background-color: #ff5765;
}

.table-header.grey {
	background-color: #d2a2a6;
}

.table-header h2 {
	font-size: 1.5rem;
	margin-bottom: 5px;
}

.table-header .price {
	font-size: 5.5rem;
	margin: 15px 0;
}

.table-header .period {
	font-size: 1.2rem;
	opacity: 0.9;
	font-weight: 600;
}

.table-content {
	padding: 20px;
}

.feature {
	padding: 12px 0;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: center;
	font-size: 86%;
}

.feature:last-child {
	border-bottom: none;
}

.feature i {
	margin-right: 10px;
	color: #ff5765;
}

.table-footer {
	padding: 20px;
	text-align: center;
}

.btnstart {
	display: inline-block;
	padding: 12px 30px;
	background-color: #000;
	color: white !important;
	text-decoration: none !important;
	border-radius: 25px;
	font-weight: bold;
	transition: background-color 0.3s ease;
	
	font-size: 100%;
}

.btnstart:hover {
	background-color: #777;
}

/* Mobile layout */
@media (max-width: 768px) {
	.pricing-tables {
		flex-direction: column;
		align-items: center;
	}
	
	.pricing-table {
		width: 100%;
		max-width: 350px;
		margin-bottom: 30px;
	}
	
	.pricing-table:last-child {
		margin-bottom: 0;
	}
}

/* curency buttons */

.currency-buttons {
	display: flex;
	gap: 20px;
	margin: 0 auto; /* Centers horizontally */
    width: fit-content;
}

.currency-btn {
	color: white;
	border: none;
	border-radius: 25px;
	padding: 15px 30px;
	font-size: 24px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	____box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Active state (selected) */
.currency-btn.active {
	background-color: #ff5765;
	____transform: translateY(-2px);
	____box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Inactive state (not selected) */
.currency-btn.inactive {
	background-color: #c8bcbd;
}

/* Hover states */
.currency-btn.active:hover {
	background-color: #ff5765;
}

.currency-btn.inactive:hover {
	background-color: #c8bcbd;
}