/* Main Page Styles */

/* Typography */
h1 {
	color: #3498db;
	text-align: left;
	font-size: 2.5em;
	margin-bottom: 20px;
}

h2 {
	color: #3498db;
	text-align: left;
	font-size: 1.8em;
	margin-top: 30px;
}

h3 {
	color: #3498db;
	text-align: left;
}

p {
	font-size: 20px;
	text-indent: 30px;
	line-height: 1.6;
}

/* Layout */
.intro-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

.container {
	max-width: 100%;
	margin: 20px 0;
}

.container img {
	width: 90%;
	height: auto;
	display: block;
	margin: 0 auto;
}

/* Components */
.location-badge {
	display: inline-block;
	background: #3498db;
	color: white;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	margin: 10px 0;
}

.cta-button {
	display: inline-block;
	background: #e74c3c;
	color: white;
	padding: 15px 30px;
	text-decoration: none;
	border-radius: 5px;
	font-size: 18px;
	margin: 20px 0;
	transition: background 0.3s;
}

.cta-button:hover {
	background: #c0392b;
}

.breadcrumb {
	padding: 10px 20px;
	font-size: 14px;
	color: #666;
}

.breadcrumb a {
	color: #3498db;
	text-decoration: none;
}

.breadcrumb a:hover {
	text-decoration: underline;
}

/* Equipment List */
.equipment-list {
	margin: 20px 0;
	padding-left: 40px;
}

.equipment-list li {
	margin-bottom: 15px;
	line-height: 1.6;
}

/* Section Title */
.section-title {
	text-align: center;
	margin-top: 60px;
	color: #3498db;
	font-size: 1.8em;
}

/* Card Links */
.card-link {
	color: white;
	text-decoration: underline;
}

.card-link:hover {
	text-decoration: none;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
	h1 {
		font-size: 1.8em;
	}
	
	h2 {
		font-size: 1.4em;
	}
	
	p {
		font-size: 16px;
		text-indent: 20px;
	}
	
	.intro-section {
		padding: 10px;
	}
	
	.cta-button {
		padding: 12px 24px;
		font-size: 16px;
	}
	
	.container img {
		width: 100%;
	}
}

@media screen and (max-width: 480px) {
	h1 {
		font-size: 1.5em;
	}
	
	h2 {
		font-size: 1.2em;
	}
	
	p {
		font-size: 14px;
		text-indent: 15px;
	}
	
	.location-badge {
		font-size: 12px;
		padding: 6px 12px;
	}
}