#contactUsSection {
	padding: 1.25rem;
	margin-bottom: 10rem;
}

@media (min-width: 768px) {
	#contactUsSection {
		padding-left: 5rem;
		padding-right: 5rem;
	}
}

@media (min-width: 1024px) {
	#contactUsSection {
		padding-left: 8rem;
		padding-right: 8rem;
	}
}

@media (min-width: 1280px) {
	#contactUsSection {
		margin-bottom: 5rem;
		padding-left: 18rem;
		padding-right: 18rem;
	}
}

#aboutContainer {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

@media (min-width: 768px) {
	#aboutContainer {
		flex-direction: row;
		justify-content: flex-start;
	}
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
	color: black;
	opacity: 50%
}

.contactForm {
	width: 86%;
	background-color: var(--primary);
	padding: 1rem;
	display: block;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
	.contactForm {
		width: 90%;
	}
}

@media (min-width: 768px) {
	.contactForm {
		width: 33.33%;
	}
}

@media (min-width: 1024px) {
	.contactForm {
		width: 40%;
	}
}

.formGroup {
	margin-bottom: 1rem;
}

.formLabel {
	display: block;
	color: white;
	font-weight: bold;
	margin-bottom: 0.5rem;
}

.formInput,
.formTextarea {
	width: 100%;
	padding: 0.5rem 1rem;
	background-color: var(--secondary);
	color: black;
	border-radius: 0.375rem;
	outline: none;
}

.formInput:focus,
.formTextarea:focus {
	outline: none;
}

.formTextarea {
	resize: vertical;
}

.submitButton {
	width: 100%;
	background-color: var(--secondary);
	color: black;
	font-weight: bold;
	padding: 0.5rem 1rem;
	border-radius: 0.375rem;
	transition: background-color 0.3s ease;
}

.submitButton:hover {
	background-color: var(--primary-light);
}

#three-container {
	width: 93%;
	left: 0;
	height: 20rem;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

@media (min-width: 768px) {
	#three-container {
		width: 66.67%;
		height: 26rem;
	}
}

@media (min-width: 1024px) {
	#three-container {
		width: 60%;
	}
}