/* Membership Page Styles (Modularized) */
.membership-hero {
	background-color: var(--primary-color);
	color: #fff;
	padding: 80px 0;
	text-align: center;
	margin-bottom: 60px;
}

.membership-hero h1 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	color: #fff;
}

.membership-hero p {
	font-size: 1.2rem;
	opacity: 0.9;
	max-width: 700px;
	margin: 0 auto;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 80px;
}

.service-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	border-color: var(--primary-color);
}

.service-icon {
	width: 80px;
	height: 80px;
	background: var(--light-bg);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	font-size: 2rem;
	color: var(--primary-color);
	transition: all 0.3s ease;
}

.service-card:hover .service-icon {
	background: var(--primary-color);
	color: #fff;
}

.service-title {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: var(--heading-color);
}

.service-desc {
	color: #666;
	margin-bottom: 30px;
	font-size: 1rem;
	line-height: 1.6;
}

.service-action {
	margin-top: auto;
	width: 100%;
}

.btn-access {
	background-color: var(--primary-color);
	color: #fff;
	width: 100%;
	display: block;
	padding: 12px;
	border-radius: 10px;
	font-weight: 700;
	border: none;
	cursor: pointer;
}

.btn-signup {
	background-color: #334155;
	color: #fff;
	width: 100%;
	display: block;
	padding: 12px;
	border-radius: 10px;
	font-weight: 700;
	border: none;
	cursor: pointer;
}

.btn-access:hover {
	background-color: #0d6efd;
	transform: translateY(-2px);
}

.btn-signup:hover {
	background-color: #1e293b;
	transform: translateY(-2px);
}

@media (max-width: 991px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.services-grid {
		grid-template-columns: 1fr;
	}

	.membership-hero {
		padding: 60px 0;
	}

	.membership-hero h1 {
		font-size: 2rem;
	}
}