#main {
	margin: 0 auto !important;
	background-color: white;
}

.intro-img {
	display: flex;
	align-items: center;
}
.section-title{
	text-align: center;
}
.section-title p:first-child{
	color: #333;
	font-weight: bold;
	font-size: 1.5em;
	margin-bottom: 0.8em;
}
h1 {
	text-align: center;
	margin-bottom: 30px;
	color: #333;
}
.container{
	width: 70%;
	margin: 2em 15%;
}
.cards-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
	margin-bottom: 30px;
}

.card {
	background-color: white;
	border-radius: 2px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: transform 0.3s ease;
}

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

.card-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.card-content {
	padding: 20px;
}

.card-title {
	font-size: 18px;
	margin-bottom: 10px;
	color: #333;
}

.card-desc {
	font-size: 14px;
	color: #666;
	margin-bottom: 15px;
	line-height: 1.5;
	height: 42px;
}

.card-footer {
	padding-top: 15px;
	border-top: 1px solid #eee;
}

.card-tag {
	padding: 8px 10px;
	background-color: rgb(15, 46, 159);
	color: white;
	border-radius: 4px;
	font-size: 12px;
	display: inline;
}

.pagination {
	display: flex;
	justify-content: center;
	margin-top: 60px;
}

.pagination button {
	padding: 8px 16px;
	margin: 0 5px;
	border: 1px solid #ddd;
	background-color: white;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s;
}

.pagination button:hover {
	background-color: #f0f0f0;
}

.pagination button.active {
	background-color: #007bff;
	color: white;
	border-color: #007bff;
}

.loading {
	text-align: center;
	padding: 20px;
	font-size: 18px;
	color: #666;
}

.error {
	text-align: center;
	padding: 20px;
	font-size: 18px;
	color: #d32f2f;
	background-color: #ffebee;
	border-radius: 8px;
}