.contact-form-section > div {
	padding: 60px 45px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	border-radius: 25px;
}

.contact-form-section .block-desc-contact {
	font-size: 24px;
	line-height: 125%;
	color: #333;
}

.contact-form-container .row {
	row-gap: 10px;
}

.contact-form-section .checkbox {
	margin-top: 5px;
	text-align: center;
}

.contact-form-section .checkbox label>span:before {
	border: 1px solid rgba(255, 255, 255, 1);
	background-color: white;
	border-radius: 1px;
}

.contact-form-section .checkbox label>span:after, .contact-form-section .checkbox label>span:before {
	width: 24px;
	height: 24px;
}

.contact-form-section .checkbox label>span a {
	color: #333;
}

.contact-form-section .checkbox label>span {
	color: rgba(51, 51, 51, 1);
	font-size: 16px;
	line-height: 145%;
	padding: 0 0 0 35px;
}

.contact-form-section .checkbox label>span:after {
	font-size: 16px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid transparent;
    background-color: white;
    color: #333;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #FF9F00;
    box-shadow: 0 0 0 2px rgba(255, 159, 0, 0.2);
}

.wpcf7-form .wpcf7-submit {
    background-color: rgba(255, 137, 1, 1);
    color: white;
    border: none;
    padding: 20px 60px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 212px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.wpcf7-form .wpcf7-submit:hover {
    background-color: #e68d00;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
	.contact-form-section > div {
		padding: 30px 25px;
	}
	.contact-form-section .block-head {
		text-align: center;
	}
	.contact-form-section .block-desc-contact {
		text-align: center;
		margin-bottom: 20px;
		font-size: 18px;
	}

	.wpcf7-form .wpcf7-submit {
		margin-top: 10px;
	}
}

@media (max-width: 567px) {
	.contact-form-section > div {
		padding: 25px 20px;
	}
	.wpcf7-form .wpcf7-submit {
		margin-top: 0;
	}
	.contact-form-section .block-desc-contact {
		font-size: 16px;
	}
	.contact-form-section .checkbox label>span {
		text-align: left;
	}
}