﻿.hero-section {
	width: 100%;
	height: 30vh;
	object-fit: cover;
}

	.hero-section h1 {
		font-size: 2.5rem;
		margin-bottom: 1rem;
	}
/* Hero Section */
.sell-hero {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/marinette-office.webp');
	background-size: cover;
	background-position: center;
	color: white;
	padding: 100px 0;
	margin-bottom: 30px;
}

	.sell-hero h1 {
		color: white;
		text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
	}

	.sell-hero p {
		color: rgba(255, 255, 255, 0.9);
	}

/* Table of Contents */
.toc-link {
	display: block;
	padding: 8px 0;
	color: #333;
	text-decoration: none;
	transition: all 0.2s ease;
}

	.toc-link:hover {
		color: var(--bs-primary);
		transform: translateX(5px);
	}

/* Process Section */
.process-card {
	position: relative;
	padding: 20px;
	height: 100%;
	border-radius: 10px;
	background-color: #f8f9fa;
	transition: transform 0.3s ease;
	box-shadow: var(--bs-box-shadow-sm);
}

	.process-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	}

.process-icon {
	display: inline-block;
	margin-bottom: 15px;
}

	.process-icon i {
		font-size: 40px;
		color: var(--ppr-blue);
	}

.process-number {
	position: absolute;
	top: 0;
	left: 0;
	color: var(--ppr-blue);
	width: 2em;
	height: 2em;
	border-bottom-right-radius: .375em;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5rem;
	font-weight: bold;
}

/* Testimonials */
.testimonials .card {
	transition: transform 0.3s ease;
}

	.testimonials .card:hover {
		transform: translateY(-5px);
	}

/* Stats Section */
.stat-card {
	padding: 20px;
	border-radius: 10px;
	background-color: #f8f9fa;
	transition: transform 0.3s ease;
	margin-bottom: 20px;
}

	.stat-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	}

	.stat-card h3 {
		font-size: 2.5rem;
		font-weight: bold;
		color: var(--bs-primary);
		margin-bottom: 5px;
	}

/* CTA Section */
.cta-section {
	padding: 50px 0;
	border: 1px solid rgba(0, 0, 0, 0.1);
}