.services-section {
	padding: 3rem 1rem;
	background-color: #f8f9fa;
}

.services-container {
	max-width: 1400px;
	margin: 0 auto;
}

.services-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 3rem;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.service-card {
	background: white;
	border: 3px solid #8B4513;
	border-radius: 15px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.service-logo {
	width: 170px;
	height: 170px;
	background: white;
	/* border: 3px solid #8B4513;
	border-radius: 15px; */
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	padding: 1rem;
}

.service-logo img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	border-radius: 10px;
}

.service-name {
	font-size: 1.8rem;
	font-weight: 700;
	color: #ef6c00;
	margin-bottom: 0.5rem;
}

.service-tagline {
	font-size: 1.5rem;
	color: #333;
	margin-bottom: 1.5rem;
	font-weight: 500;
}

.service-content {
	text-align: left;
	width: 100%;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

.service-intro {
	font-size: 1.35rem;
	color: #333;
	margin-bottom: 0.75rem;
	font-weight: 600;
}

.service-list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 1rem;
}

.service-list li {
	font-size: 1.25rem;
	color: #555;
	margin-bottom: 0.5rem;
	padding-left: 1.5rem;
	position: relative;
}

.service-list li:before {
	content: "-";
	position: absolute;
	left: 0.5rem;
	color: #ef6c00;
	font-weight: bold;
}

.service-question {
	font-size: 1.35rem;
	color: #333;
	margin-top: 1rem;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.service-answer {
	font-size: 1.25rem;
	color: #555;
}

.book-meeting-btn {
	display: inline-block;
	background-color: #ef6c00;
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	transition: background-color 0.3s ease;
	margin-top: auto;
}

.book-meeting-btn:hover {
	background-color: #d35400;
	color: white;
	text-decoration: none;
}

.calendly-links {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1rem;
	padding: 2rem;
	background: white;
	border: 2px solid #ddd;
	border-radius: 8px;
}

.calendly-links a {
	color: #0066cc;
	text-decoration: underline;
	font-size: 0.95rem;
	text-align: center;
	padding: 0.5rem;
}

.calendly-links a:hover {
	color: #004499;
}

@media (max-width: 768px) {
	.services-grid {
		grid-template-columns: 1fr;
	}
	
	.services-title {
		font-size: 2rem;
	}
	
	.service-name {
		font-size: 1.25rem;
	}
	
	.calendly-links {
		grid-template-columns: 1fr;
	}
}
