.slide-container {
	display: flex;
	flex-direction: column;
}

.step-circle {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-weight: bold;
	font-family: 'Oswald', sans-serif;
	z-index: 10;
}

.step-active {
	background-color: #000;
	color: #fff;
	border: 2px solid #000;
}

.step-inactive {
	background-color: #fff;
	color: #9ca3af;
	border: 2px solid #e5e7eb;
}

.form-input,
.offer-form .wpcf7 input[type="text"],
.offer-form .wpcf7 input[type="email"],
.offer-form .wpcf7 input[type="tel"],
.offer-form .wpcf7 input[type="url"],
.offer-form .wpcf7 input[type="number"],
.offer-form .wpcf7 select,
.offer-form .wpcf7 textarea {
	width: 100%;
	background-color: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 0.25rem;
	padding: 0.5rem 0.75rem;
	font-size: 0.875rem;
	transition: border-color 0.2s;
}

.form-input:focus,
.offer-form .wpcf7 input:focus,
.offer-form .wpcf7 select:focus,
.offer-form .wpcf7 textarea:focus {
	border-color: #000;
	outline: none;
	box-shadow: 0 0 0 1px #000;
}

.offer-form .wpcf7 p {
	margin-bottom: 1.25rem;
}

.offer-form .wpcf7 label {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	color: #374151;
	margin-bottom: 0.25rem;
}

.offer-form .wpcf7 textarea {
	min-height: 8rem;
}

.offer-form .wpcf7 input[type="submit"] {
	background-color: #000;
	color: #fff;
	font-weight: 700;
	padding: 0.75rem 2rem;
	border-radius: 0.25rem;
	width: 12rem;
	cursor: pointer;
	transition: background-color 0.2s;
}

.offer-form .wpcf7 input[type="submit"]:hover {
	background-color: #1f2937;
}

.offer-form .wpcf7-list-item {
	margin-left: 0;
	margin-right: 1rem;
}

@media (max-width: 1024px) {
	.offer-content {
		flex-direction: column;
		gap: 2.5rem;
	}

	.offer-form-column,
	.offer-sidebar {
		width: 100%;
	}

	.offer-steps {
		display: none;
	}
}

@media (max-width: 760px) {
	.offer-main {
		padding: 6rem 1.25rem 3rem;
	}

	.offer-title {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.5rem;
	}
}
