.classic-form {background: #F2F2EF; border-radius: 16px; padding: 24px; box-shadow: 0 6px 24px rgba(0,0,0,0.06);}
.classic-form .cf-row {display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px;}
.classic-form .cf-label {font-size: 14px; letter-spacing: .02em; text-transform: none; color: #5C5138;}
.classic-form .cf-input, .classic-form .cf-textarea {width: 100%; border: 1px solid rgba(92,81,56,0.25); border-radius: 12px; padding: 14px 16px; font-size: 16px; outline: none; background: #fff;}
.classic-form .cf-input:focus, .classic-form .cf-textarea:focus {border-color: #5C5138; box-shadow: 0 0 0 3px rgba(92,81,56,0.15);} 
.classic-form .cf-textarea {resize: vertical;}
.classic-form .cf-actions {display: flex; align-items: center; gap: 16px; margin-top: 8px; flex-wrap: wrap;}
.classic-form .cf-note {font-size: 12px; color: rgba(92,81,56,0.8);} 
/* make inputs look great on mobile */
@media (max-width: 768px){
.classic-form {padding: 18px;}
}
/* compact submit button just for classic form */
.classic-form .title-block-button {
padding: 10px 18px;
font-size: 14px;
line-height: 1.1;
border-radius: 10px;
display: inline-block;
}
.classic-form .cf-actions { gap: 10px; }
/* keep form width aligned with text above and prevent overflow */
.form-block-right { display: flex; flex-direction: column; align-items: flex-start; }
.form-with-js-handler { max-width: 560px; width: 100%; margin: 0 auto; }
.classic-form { max-width: 560px; width: 100%; margin: 0 auto; }
.classic-form .cf-input, .classic-form .cf-textarea { box-sizing: border-box; }
/* center submit button */
.classic-form .cf-actions { justify-content: center; }
@media (max-width: 768px){
.form-block-right { align-items: center; }
.form-with-js-handler, .classic-form { max-width: 92%; margin: 0 auto; }
}

.iti { width: 100%; }
.cf-input.input-error { border-color: #e53935 !important; box-shadow: 0 0 0 1px #e53935 inset; }
.invalidPhone { display:none; color:#e53935; font-size: 12px; margin-top: 6px; }


.cf-submit-button {
	cursor: pointer;
    max-width: max-content;
    background: linear-gradient(196deg, #f3e597 0%, #966e2c 47.8%, #bc9f58 66.98%, #e4d185 89.1%, #f3e597 100%);
    font-family: var(--font-family);
    font-weight: 700;
    color: #533d19;
    border: none;
    padding: 10px 18px;
    font-size: 14px;
    line-height: 1.1;
    border-radius: 10px;
    display: inline-block;
}
.cf-error-message {
    color: red;
    font-size: 14px;
/*    margin-top: 10px;*/
}
.cf-form-message {
    margin-top: 10px;
    text-align: center;
    display: none;
    margin-top: 10px;
}
.cf-form-message.show {
    display: block;
}
.cf-form-message.success {
    color: green
}
.cf-form-message.error {
    color: red
}



/* 
* Thank you page 
*/
.section-thanks {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.shadow {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
}

.title_block {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.title_block .head-text {
    font-family: sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 64px;
    line-height: 112.5%;
    margin-bottom: 10px;
    /* or 72px */
    text-transform: capitalize;
    color: #1D1E21;
}

.title_block .sub-text {
    font-family: sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    /* or 138% */
    color: #1D1E21;
}

.section-thanks .image-block {
	text-align: center;
}
.section-thanks .image-block img {
	max-width: 100%;
}

.second_block {
    display: flex;
    width: 100%;
    height: 350px;
    justify-content: center;
}

.second_block .inform-block {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 70%;
    background-image: url('background.png');
    background-repeat: round;
    border-radius: 5px;
}

.second_block .head-text {
    font-family: sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 104%;
    /* or 42px */
    text-align: center;
    color: #272D38;
}

.second_block .sub-text {
    font-family: sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    /* or 138% */
    text-align: center;
    color: #272D38;
}

@media (max-width: 1050px) {
    .title_block {
        flex-direction: column;
    }
    .title_block p {
        text-align: center;
    }
    .second_block {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
	.title_block .head-text {
		font-size: 32px;
	}
	.section-thanks .image-block img {
		max-width: 80%;
	}
}


/* Header */

.nav-menu-burger {
	display: none;
}
@media (max-width: 768px) {

	.nav-menu-burger {
		display: block;
	}
	.nav-menu-links {
		display: none;
		position: absolute;
		top: 89px;
		left: 0;
		right: 0;
		width: 100%;
		height: 100%;
		background: #121212;
		padding-top: 40px;
	}
	.mobile-menu .nav-menu-links {
		display: flex;
	}
	.mobile-menu {
		overflow: hidden;
	}

}