/* SEO Landing Page Styles */

/* Banner Styles */
.banner {
	background: url(../../images/banner.webp) no-repeat center center;
	background-size: cover;
	background-position: center;
	color: white;
	padding: 300px 0;
	text-align: center;
	height: 90vh;
}

.banner h1 {
	font-size: 48px;
	margin-bottom: 20px;
	max-width: 700px;
}

.banner p {
	font-size: 20px;
	max-width: 700px;
	margin: 0 auto 30px;
}

.banner .conLeft {
	text-align: left;
}

.banner .conLeft p {
	margin-left: 0;
}

.banner .conRight {
	text-align: right;
}

.banner .conRight p {
	margin-right: 0;
}

/* Breadcrumb styles moved to seo-common.css */

/* Profiles Section */
.profiles-section {
	padding: 60px 0;
}

/* Section title styles moved to seo-common.css */

.profiles-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
}

.profile-card {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.profile-card:hover {
	transform: translateY(-5px);
}

.profile-img {
	height: 250px;
	background-size: cover;
	background-position: center;
}

.profile-info {
	padding: 20px;
}

.profile-info h3 {
	font-size: 20px;
	margin-bottom: 5px;
}

.profile-info p {
	color: #666;
	margin-bottom: 10px;
}

.profile-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-top: 10px;
}

.tag {
	background-color: #f3f3f3;
	padding: 3px 8px;
	border-radius: 4px;
	font-size: 12px;
}

/* Content Section */
.content-section {
	padding: 60px 0;
	background-color: #f8f9fa;
}

.content-container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 20px;
}

.content-text {
	flex: 1;
}

/* Content Text - Page title area */
.content-text > h1,
.content-text > h2 {
	text-align: center;
	color: #333;
	font-weight: 600;
	line-height: 1.3;
}

.content-text > h1 {
	font-size: 36px;
	margin: 0 0 20px 0;
}

.content-text > h2 {
	font-size: 32px;
	margin: 0 0 20px 0;
}

.content-text > .subtitle {
	text-align: center;
	font-size: 18px;
	color: #666;
	margin-bottom: 30px;
}

/* Landing-specific article content styles */
/* Base styles inherited from seo.css */

/* Override for images in paragraphs - float left on desktop */
.content-text .article-content p img {
	width: 100%;
	max-width: 500px;
	float: left;
	margin: 10px 30px 10px 0;
}

.content-text .btn {
	margin: 60px auto 20px auto;
	width: 200px;
	text-align: center;
	float: none;
	display: block;
}

.content-img {
	flex: 1;
	height: 400px;
	background-size: cover;
	background-position: center;
	border-radius: 8px;
}

/* Related Pages */
.related-pages {
	padding: 60px 0;
}

/* Article cards styles moved to seo-common.css */

/* Cities Section */
.cities-section {
	padding: 60px 0;
	background-color: #f8f9fa;
}

.cities-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	max-width: 800px;
	margin: 0 auto;
}

.city-item {
	background: white;
	padding: 10px 20px;
	border-radius: 20px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	text-decoration: none;
}

.city-item:hover {
	background: #ff6b6b;
	color: white;
	transform: translateY(-3px);
	text-decoration: none;
}

.paddingBot {
	padding-bottom: 60px;
}

/* Responsive */
@media (max-height: 800px) {
	.banner {
		padding: 180px 0;
	}
}

@media (max-width: 768px) {
	.content-text p img {
		padding-bottom: 20px;
		float: none;
		margin: 0 auto 20px;
		display: block;
	}

	.banner {
		background: url(../../images/bannerMobile.webp) no-repeat center center;
		background-size: cover;
		height: 90vh;
		padding: 150px 0;
	}

	.banner .conRight,
	.banner .conLeft {
		text-align: center;
	}

	.banner h1 {
		font-size: 32px;
	}

	.banner p {
		font-size: 16px;
	}

	/* Breadcrumb mobile styles moved to seo-common.css */

	/* Content section mobile styles */
	.content-section {
		padding: 30px 0;
	}

	.content-container {
		padding: 0;
	}

	.content-text > h1 {
		font-size: 24px;
	}

	.content-text > h2 {
		font-size: 22px;
	}

	.content-text .article-content h2 {
		font-size: 20px;
	}

	.content-text .article-content h3 {
		font-size: 18px;
	}

	.content-text .article-content p {
		font-size: 15px;
		line-height: 1.6;
	}

	/* Related pages mobile styles */
	.related-pages {
		padding: 30px 0;
	}

	.profiles-section {
		padding: 30px 0;
	}

	.cities-section {
		padding: 30px 0;
	}

	/* Section title mobile styles moved to seo-common.css */
}
