#recruit-page {
	font-family: sans-serif;
	background: #f9f9f9;
	margin: 0;
}

#recruit-header,
#recruit-footer {
	background: #111;
	color: white;
	padding: 1rem;
	text-align: center;
}

#recruit-main {
	max-width: 960px;
	margin: auto;
	background: #fff;
	padding: 2rem;
}

h1,
h2 {
	color: #c00;
}

.recruit-section {
	margin-bottom: 3rem;
}

.recruit-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.recruit-text {
	flex: 1;
	min-width: 280px;
}

.recruit-image {
	flex: 1;
	min-width: 280px;
	text-align: center;
}

.recruit-image img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.recruit-button {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	background: #c00;
	color: #fff;
	border-radius: 5px;
	text-decoration: none;
	margin-top: 1rem;
}

#recruit-form form {
	max-width: 600px;
	margin: auto;
}

#recruit-form input,
#recruit-form textarea {
	width: 100%;
	padding: 0.5rem;
	margin-bottom: 1rem;
	border: 1px solid #ccc;
	border-radius: 5px;
}

#recruit-form button {
	background: #c00;
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 5px;
	cursor: pointer;
}

@media (max-width: 768px) {
	.recruit-flex {
		flex-direction: column;
	}

	.recruit-image,
	.recruit-text {
		text-align: left;
	}
}