/** Main Styles */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary: #0F203E;
    --secondary: #DAA542;
    --black: #000000;
    --white: #FFFFFF;
    --box-shadow: 0 4px 30px 0 #00000040;
    --radius1: 10px;
    --radius2: 20px;
}

html {
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif!important;
}

body.home main {
    padding-bottom: 30px;
}

button,
select,
input {
    font-family: "Montserrat", sans-serif!important;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.page-content, .entry-content, .entry-summary {
    margin: 0!important;
}

.post, .page {
    margin: 0!important;
}

/** Container Styles */

.container {
    width: 100%;
    max-width: 1536px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

@media (max-width: 1536px) {
    .container {
        max-width: 1280px;
    }
}

@media (max-width: 1280px) {
    .container {
        max-width: 1024px;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 768px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 640px;
    }
}

@media (max-width: 640px) {
    .container {
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }
}

/** Header */

.header {
    width: 100%;
	position: fixed;
	z-index: 50;
	background: var(--white);
	box-shadow: var(--box-shadow);
}

.header .container {
	width: 100%;
    padding-top: 45px;
    padding-bottom: 45px;
	display: grid;
	grid-template-columns: 225px minmax(0, 1fr) 211px;
	align-items: center;
	column-gap: 20px;
}

.header__logo {
	min-width: 0;
	display: flex;
	align-items: center;
}

.header__logo-link {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	text-decoration: none;
}

.header__logo-img,
.header__logo .custom-logo {
	display: block !important;
	width: auto !important;
	max-width: 225px !important;
	height: auto !important;
}

.header__logo-text {
	display: flex;
	flex-direction: column;
	font-weight: 800;
	font-size: 22px;
	line-height: 1;
	color: #0F203E;
	text-decoration: none;
}

.header__logo-text small {
	margin-top: 4px;
	font-size: 12px;
	letter-spacing: 0.14em;
	color: #0F203E;
}

.header__nav {
	min-width: 0;
	width: 100%;
	display: flex!important;
	justify-content: center;
	align-items: center;
}

.header__menu {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.header__menu li {
	position: relative;
	margin: 0;
	padding: 0;
}

.header__menu a,
.header__menu a:visited {
	display: inline-flex;
	align-items: center;
	font-size: 16px;
	font-weight: 700;
	color: var(--black);
	text-decoration: none;
	transition: color 0.2s ease;
}

.header__menu a:hover,
.header__menu a:focus,
.header__menu .current-menu-item > a,
.header__menu .current_page_item > a {
	color: var(--secondary);
	text-decoration: none;
}

.header__menu .sub-menu {
	position: absolute;
	top: calc(100% + 14px);
	left: 0;
	z-index: 80;
	min-width: 210px;
	margin: 0;
	padding: 12px;
	list-style: none;
	border-radius: 12px;
	background: #ffffff;
	box-shadow: 0 14px 34px rgba(15, 32, 62, 0.16);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.header__menu li:hover > .sub-menu,
.header__menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.header__menu .sub-menu a {
	width: 100%;
	padding: 9px 10px;
	border-radius: 8px;
	white-space: normal;
}

.header__menu .sub-menu a:hover,
.header__menu .sub-menu a:focus {
	background: rgba(218, 165, 66, 0.12);
}

.header__action {
	min-width: 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.header__button,
.header__button:visited {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 30px;
	border-radius: var(--radius1);
	background: var(--primary);
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header__button:hover,
.header__button:focus,
.header__button:active {
	background: var(--secondary);
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-1px);
}

.header__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	border: 0;
	background: #0F203E;
	color: #ffffff;
	border-radius: 7px;
	padding: 10px 16px;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.header__toggle:hover,
.header__toggle:focus,
.header__toggle:active {
	background: #DAA542;
	color: #ffffff;
}

.header__mobile-menu {
	width: 100%;
}

.header__button.header__button--mobile {
	display: none;
}

.header__mobile-close {
	display: none;
}

.header__toggle-line {
	display: none;
}

.header__mobile-menu * {
	box-sizing: border-box;
}

@media (max-width: 1536px) {
    .header__logo-img,
    .header__logo .custom-logo {
        max-width: 200px !important;
    }

    .header__button,
    .header__button:visited {
        padding: 12px 24px;
        font-size: 14px;
    }

    .header__menu a,
    .header__menu a:visited {
        font-size: 14px;
    }

    .header__menu {
        gap: 15px;
    }
}

@media (max-width: 1280px) {
    .header__logo-img,
    .header__logo .custom-logo {
        max-width: 150px !important;
    }

    .header__menu a,
    .header__menu a:visited {
        font-size: 12px;
    }

    .header__button,
    .header__button:visited {
        padding: 10px 18px;
        font-size: 12px;
    }

    .header .container {
        column-gap: 10px;
    }

    .header__menu {
        gap: 10px;
    }

    .header .container {
        padding-top: 25px;
        padding-bottom: 25px;
        grid-template-columns: 160px minmax(0, 1fr) 160px;
    }
}

@media (max-width: 1024px) {
    .header .container {
        padding-top: 16px;
        padding-bottom: 16px;
        display: grid;
        grid-template-columns: auto auto;
        align-items: center;
        justify-content: space-between;
    }

    .header__action {
        display: none !important;
    }

    .header__nav {
        width: auto;
        display: flex !important;
        justify-content: flex-end;
    }

    .header__toggle {
        width: 40px;
        height: 40px;
        padding: 0;
        display: inline-flex !important;
        flex-direction: column;
        gap: 4px;
        align-items: center;
        justify-content: center;
        background: var(--primary);
        border-radius: var(--radius1);
        font-size: 0;
    }

    .header__toggle-line {
        display: block;
        width: 24px;
        height: 2px;
        background: #ffffff;
        border-radius: 2px;
    }

    .header__mobile-menu {
        top: 0;
        right: 0;
        bottom: 0;
        height: auto;
        min-height: 0;
        position: fixed;
        inset: 0 0 0 auto;
        z-index: 1000;

        width: min(360px, calc(100vw - 32px));

        padding: 76px 24px 32px;
        box-sizing: border-box;

        background: var(--white);
        box-shadow: -12px 0 30px rgba(0, 0, 0, 0.18);

        display: flex;
        flex-direction: column;
        align-items: stretch;

        transform: translateX(110%);
        opacity: 0;
        visibility: hidden;

        transition:
            transform 0.3s ease,
            opacity 0.3s ease,
            visibility 0.3s ease;
        overflow-y: auto;
    }

    .header__nav.toggled .header__mobile-menu,
    .main-navigation.toggled .header__mobile-menu {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .header__mobile-close {
        position: absolute;
        top: 24px;
        right: 24px;
        width: 35px;
        height: 35px;
        padding: 0;
        border: 0;
        border-radius: var(--radius1);
        background: var(--secondary);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .header__mobile-close span {
        position: absolute;
        width: 26px;
        height: 3px;
        background: #ffffff;
        border-radius: 3px;
    }

    .header__mobile-close span:first-child {
        transform: rotate(45deg);
    }

    .header__mobile-close span:last-child {
        transform: rotate(-45deg);
    }

    .header__menu {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0 0 24px;
        padding: 0;
    }

    .header__menu li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(15, 32, 62, 0.12);
    }

    .header__menu li:nth-last-of-type(1) {
        border-bottom: 0;
    }

    .header__menu a,
    .header__menu a:visited {
        width: 100%;
        justify-content: flex-start;
        padding: 16px 0;
        font-size: 18px;
        line-height: 1.2;
    }

    .header__button.header__button--mobile,
    .header__button.header__button--mobile:visited {
        display: inline-flex !important;
        width: 100%;
        max-width: 100%;
        padding: 18px 20px;
        font-size: 16px;
        box-sizing: border-box;
    }
}

@media (max-width: 540px) {
    .header__menu a, .header__menu a:visited {
        padding: 12px 0;
        font-size: 14px;
    }

    .header__button.header__button--mobile, .header__button.header__button--mobile:visited {
        padding: 12px 15px;
        font-size: 12px;
    }
}

/** Footer */

.footer {
    background: #ffffff;
    padding: 50px 0;
    box-shadow: var(--box-shadow);
}

.footer__logo {
    text-align: center;
    margin-bottom: 30px;
}

.footer__logo-img {
    max-width: 391px;
    height: auto;
}

.footer__logo-text {
    font-weight: 800;
    font-size: 22px;
    text-decoration: none;
    color: #111;
}

.footer__logo-text span {
    display: block;
    font-size: 12px;
}

.footer__compliance {
    margin-bottom: 82px;
}

.footer__compliance h3 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 20px;
    color: var(--black);
}

.footer__compliance p {
    font-size: 12px;
    font-weight: 400;
    margin: 0;
    color: var(--black);
}

.footer__row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.footer__col h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px;
    color: var(--black);
}

.footer__col p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
}

.footer__contact {
    text-align: left;
}

.footer__contact a {
    color: #111;
    text-decoration: none;
}

.footer__contact a:hover {
    color: #DAA542;
}

.footer__menu {
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.footer__nav {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__nav li:not(:last-child)::after {
    content: "|";
    margin: 0 8px;
}

.footer__nav a,
.footer__nav a:visited {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    text-decoration: none;
    transition: all 200ms ease;
}

.footer__nav a:hover {
    color: #DAA542;
}

.footer__address {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer__address h4 {
    text-align: right;
}

.footer__bottom {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
}

@media (max-width: 1280px) {
    .footer__col h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer__col p {
        font-size: 14px;
    }

    .footer__nav a, .footer__nav a:visited {
        font-size: 13px;
    }

    .footer__logo-img {
        max-width: 291px;
    }

    .footer__bottom {
        font-size: 16px;
    }

    .footer {
        padding: 30px 0;
    }
}

@media (max-width: 1024px) {
    .footer__row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .footer__address {
        text-align: center;
        align-items: center;
    }

    .footer__contact {
        text-align: center;
    }

    .footer__compliance {
        text-align: center;
        margin-bottom: 52px;
    }

    .footer__bottom {
        font-size: 13px;
    }

    .footer__compliance p {
        font-size: 12px;
    }

    .footer__compliance h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer__logo {
        margin-bottom: 20px;
    }

    .footer__logo-img {
        max-width: 221px;
    }
}

@media (max-width: 575px) {
    .footer__logo-img {
        max-width: 180px;
    }
}

/** Hero Banner */

.hero-banner {
    padding-top: 250px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero-banner__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
}

.hero-banner__content {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-banner__bg {
    position: absolute;
    border-radius: var(--radius2);
    top: 0;
    right: -68%;
    bottom: 0;
    width: calc(150% + ((100vw - 100%) / 2));
    background: #112342;
    z-index: -1;
}

.hero-banner__text-block {
    padding: 50px 0;
}

.hero-banner__title {
    margin: 0 0 30px;
    color: var(--white);
    font-size: 34px;
    font-weight: 700;
}

.hero-banner__text {
    max-width: 90%;
    margin: 0 0 50px;
    color: var(--white);
    font-size: 24px;
    font-weight: 400;
}

.hero-banner__button, .hero-banner__button:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 21px 86px;
    border-radius: var(--radius2);
    background: var(--white);
    color: var(--black);
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.hero-banner__button:hover {
    color: var(--black);
    opacity: 0.85;
}

.hero-banner__image-wrap {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.hero-banner__image {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 1536px) {
    .hero-banner {
        padding-top: 210px;
        padding-bottom: 60px;
    }

    .hero-banner__title {
        font-size: 28px;
    }

    .hero-banner__text {
        font-size: 20px;
    }

    .hero-banner__button {
        padding: 15px 56px;
        font-size: 20px;
    }
}

@media (max-width: 1280px) {
    .hero-banner {
        padding-top: 140px;
        padding-bottom: 40px;
    }

    .hero-banner__title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .hero-banner__text {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-banner__button {
        padding: 12px 46px;
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .hero-banner {
        padding-top: 120px;
    } 
}

@media (max-width: 768px) {
    .hero-banner__inner {
        grid-template-columns: 1fr;
    }

    .hero-banner__image {
        width: 80%;
        position: relative;
        transform: none;
        left: 0;
        top: 0;
    }

    .hero-banner__image-wrap {
        justify-content: center;
    }

    .hero-banner__bg {
        right: -20%;
        width: 150%;
    }

    .hero-banner {
        padding-top: 72px;
    }
}

@media (max-width: 768px) {
    .hero-banner__text-block {
        padding: 30px 0;
    }

    .hero-banner__title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .hero-banner__text {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .hero-banner__button {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .hero-banner__title {
        font-size: 24px;
    }

    .hero-banner__text {
        font-size: 15px;
    }

    .hero-banner__button {
        width: 100%;
        min-width: 0;
    }
}

/** Investors Info Cards */

.investors-info-cards {
    padding-bottom: 100px;
    background: var(--white);
}

.investors-info-cards__title {
    display: inline-block;
    margin: 0 0 100px;
    color: var(--primary);
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.investors-info-cards__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 160px;
    margin-bottom: 50px;
}

.investors-info-cards__feature {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.investors-info-cards__icon {
    width: 161px;
    height: 161px;
    margin: 0 auto 40px;
    border-radius: 50%;
    background: #112342;
    display: flex;
    align-items: center;
    justify-content: center;
}

.investors-info-cards__icon img {
    display: block;
    width: 80px;
    height: auto;
    object-fit: contain;
}

.investors-info-cards__feature-title {
    margin: 0 0 30px;
    color: var(--black);
    font-size: 24px;
    font-weight: 700;
}

.investors-info-cards__feature-text {
    max-width: 90%;
    margin: 0;
    color: var(--black);
    font-size: 24px;
    font-weight: 500;
}

.investors-info-cards__description {
    max-width: 75%;
    margin: 0 0 50px;
    color: var(--black);
    font-size: 24px;
    font-weight: 400;
}

.investors-info-cards__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.investors-info-cards__stat-card {
    padding: 43px 42px;
    border-radius: var(--radius1);
    background: var(--white);
    box-shadow: var(--box-shadow);
    color: var(--black);
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.investors-info-cards__bottom-text {
    margin: 0;
    color: var(--black);
    font-size: 24px;
    font-weight: 400;
}

@media (max-width: 1536px) {
    .investors-info-cards__title {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .investors-info-cards__features {
        gap: 80px;
        margin-bottom: 30px;
    }

    .investors-info-cards__icon img {
        width: 60px;
    }

    .investors-info-cards__icon {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }

    .investors-info-cards__feature-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .investors-info-cards__feature-text {
        font-size: 20px;
    }

    .investors-info-cards__description {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .investors-info-cards__stat-card {
        padding: 30px;
        font-size: 20px;
    }

    .investors-info-cards__bottom-text {
        font-size: 20px;
    }

    .investors-info-cards {
        padding-bottom: 60px;
    }
}

@media (max-width: 1024px) {
    .investors-info-cards__title {
        font-size: 26px;
    }

    .investors-info-cards__features {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .investors-info-cards__feature-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .investors-info-cards__feature-text {
        font-size: 16px;
    }

    .investors-info-cards__icon {
        width: 100px;
        height: 100px;
    }

    .investors-info-cards__icon img {
        width: 45px;
    }

    .investors-info-cards__description {
        max-width: 100%;
        font-size: 18px;
    }

    .investors-info-cards__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 20px;
    }

    .investors-info-cards__stat-card {
        padding: 20px;
        font-size: 16px;
    }

    .investors-info-cards__bottom-text {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .investors-info-cards__features {
        gap: 40px;
    }

    .investors-info-cards__stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .investors-info-cards__title {
        margin-bottom: 40px;
        font-size: 24px;
    }

    .investors-info-cards__features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .investors-info-cards__stats {
        grid-template-columns: 1fr;
    }

    .investors-info-cards__title {
        margin-bottom: 30px;
        font-size: 20px;
    }

    .investors-info-cards__icon {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }

    .investors-info-cards__feature-title {
        font-size: 16px;
    }

    .investors-info-cards__feature-text {
        font-size: 13px;
    }

    .investors-info-cards__features {
        gap: 20px;
        margin-bottom: 20px;
    }

    .investors-info-cards__description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .investors-info-cards__stat-card {
        font-size: 14px;
    }

    .investors-info-cards__bottom-text {
        font-size: 16px;
    }

    .investors-info-cards {
        padding-bottom: 40px;
    }
}

/** Process Cards */

.process-cards {
    padding-bottom: 100px;
    background: var(--white);
}

.process-cards__title {
    margin: 0 0 30px;
    color: var(--black);
    font-size: 40px;
    font-weight: 700;
}

.process-cards__description {
    max-width: 75%;
    margin: 0 0 50px;
    color: var(--black);
    font-size: 24px;
    font-weight: 400;
}

.process-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-cards__card {
    position: relative;
    padding: 203px 37px 50px;
    border-radius: var(--radius2);
    background: var(--white);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.process-cards__number {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    margin: 0;
    color: #dedede;
    font-size: 250px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -6px;
    pointer-events: none;
}

.process-cards__card-content {
    position: relative;
    z-index: 2;
}

.process-cards__card-title {
    margin: 0 0 30px;
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
}

.process-cards__card-text {
    margin: 0;
    color: var(--black);
    font-size: 24px;
    font-weight: 400;
}

@media (max-width: 1536px) {
    .process-cards__title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .process-cards__description {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .process-cards__card-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .process-cards__card-text {
        font-size: 20px;
    }

    .process-cards__card {
        padding: 120px 25px 30px;
    }

    .process-cards__number {
        top: 20px;
        font-size: 200px;
    }

    .process-cards {
        padding-bottom: 60px;
    }
}

@media (max-width: 1024px) {
    .process-cards__title {
        font-size: 26px;
    }

    .process-cards__description {
        max-width: 100%;
        font-size: 18px;
    }

    .process-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-cards__card-title {
        font-size: 18px;
    }

    .process-cards__card-text {
        font-size: 16px;
    }

    .process-cards__number {
        font-size: 150px;
    }
}

@media (max-width: 991px) {
    .process-cards__grid {
        grid-template-columns: 1fr;
    }

    .process-cards__card {
        min-height: 250px;
    }
}

@media (max-width: 575px) {
    .process-cards__number {
        font-size: 110px;
    }

    .process-cards__card {
        padding: 35px 22px 28px;
    }

    .process-cards__title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .process-cards__description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .process-cards__card {
        padding: 20px;
        min-height: 180px;
    }

    .process-cards__card-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .process-cards__card-text {
        font-size: 13px;
    }

    .process-cards__grid {
        gap: 15px;
    }

    .process-cards {
        padding-bottom: 40px;
    }
}

/** Property Cards */

.property-cards {
    padding-bottom: 100px;
    background: var(--white);
}

.property-cards__title {
    margin: 0 0 30px;
    color: var(--black);
    font-size: 40px;
    font-weight: 700;
}

.property-cards__description {
    max-width: 75%;
    margin: 0 0 50px;
    color: var(--black);
    font-size: 24px;
    font-weight: 400;
}

.property-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.property-cards__card {
    padding: 55px 41px;
    border-radius: var(--radius2);
    background: var(--primary);
    box-shadow: var(--box-shadow);
    color: var(--white);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.property-cards__card-title {
    margin: 0 0 30px;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
}

.property-cards__card-text {
    margin: 0;
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
}

@media (max-width: 1536px) {
    .property-cards__title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .property-cards__description {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .property-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .property-cards {
        padding-bottom: 60px;
    }
}

@media (max-width: 1024px) {
    .property-cards__title {
        font-size: 26px;
    }

    .property-cards__description {
        font-size: 18px;
        max-width: 100%;
    }

    .property-cards__card {
        padding: 35px 21px;
    }

    .property-cards__card-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .property-cards__card-text {
        font-size: 14px;
    }

    .property-cards__grid {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .property-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .property-cards__grid {
        grid-template-columns: 1fr;
    }

    .property-cards__card {
        min-height: 150px;
    }

    .property-cards__title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .property-cards__description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .property-cards__card {
        padding: 20px;
    }

    .property-cards__card-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .property-cards__card-text {
        font-size: 12px;
    }

    .property-cards__grid {
        gap: 15px;
    }

    .property-cards {
        padding-bottom: 40px;
    }
}

/** Terms Cards */

.terms-cards {
    padding-bottom: 100px;
    background: var(--white);
}

.terms-cards__title {
    margin: 0 0 30px;
    color: var(--black);
    font-size: 40px;
    font-weight: 700;
}

.terms-cards__description {
    max-width: 75%;
    margin: 0 0 50px;
    color: var(--black);
    font-size: 24px;
    font-weight: 400;
}

.terms-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.terms-cards__card {
    padding: 69px 41px;
    border-radius: var(--radius2);
    background: var(--white);
    box-shadow: var(--box-shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.terms-cards__card-title {
    margin: 0 0 30px;
    color: var(--black);
    font-size: 24px;
    font-weight: 700;
}

.terms-cards__card-text {
    margin: 0;
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
}

@media (max-width: 1536px) {
    .terms-cards__title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .terms-cards__description {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .terms-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .terms-cards__card {
        padding: 45px 30px;
    }

    .terms-cards {
        padding-bottom: 60px;
    }
}

@media (max-width: 1024px) {
    .terms-cards__title {
        font-size: 26px;
    }

    .terms-cards__description {
        font-size: 18px;
        max-width: 100%;
    }

    .terms-cards__card-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .terms-cards__card-text {
        font-size: 14px;
    }

    .terms-cards__card {
        padding: 25px 20px;
    }

    .terms-cards__grid {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .terms-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .terms-cards__grid {
        grid-template-columns: 1fr;
    }

    .terms-cards__title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .terms-cards__description {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .terms-cards__card-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .terms-cards__card-text {
        font-size: 12px;
    }

    .terms-cards__grid {
        gap: 15px;
    }

    .terms-cards {
        padding-bottom: 40px;
    }
}

/** Info Tables */

.info-tables {
    padding-bottom: 100px;
    background: var(--white);
}

.info-tables__title {
    margin: 0 0 30px;
    color: var(--black);
    font-size: 40px;
    font-weight: 700;
}

.info-tables__description {
    max-width: 75%;
    margin: 0 0 50px;
    color: var(--black);
    font-size: 24px;
    font-weight: 400;
}

.info-tables__columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    background: var(--white);
    margin-bottom: 20px;
}

.info-tables__table {
    background: var(--white);
    box-shadow: var(--box-shadow);
}

.info-tables__table-head {
    padding: 30px 25px;
    background: var(--primary);
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    text-align: center;
}

.info-tables__row {
    padding: 25px 50px 20px;
    border-bottom: 1px solid var(--black);
    color: var(--black);
    font-size: 32px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.info-tables__row:last-child {
    border-bottom: none;
}

.info-tables__bottom {
    padding: 47px 52px 34px;
    background: var(--primary);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    box-shadow: var(--box-shadow);
}

@media (max-width: 1536px) {
    .info-tables__title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .info-tables__description {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .info-tables__table-head, .info-tables__row {
        font-size: 24px;
    }

    .info-tables__bottom {
        font-size: 20px;
    }

    .info-tables {
        padding-bottom: 60px;
    }
}

@media (max-width: 1024px) {
    .info-tables__title {
        font-size: 26px;
    }

    .info-tables__description {
        font-size: 18px;
        max-width: 100%;
    }

    .info-tables__table-head, .info-tables__row {
        font-size: 16px;
    }

    .info-tables__row {
        padding: 20px 35px 15px;
    }

    .info-tables__bottom {
        font-size: 18px;
        padding: 27px 32px 20px;
    }
}

@media (max-width: 767px) {
    .info-tables__columns {
        grid-template-columns: 1fr;
    }

    .info-tables__row {
        font-size: 18px;
        padding: 12px 20px;
    }

    .info-tables__table-head {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .info-tables__title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .info-tables__description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .info-tables__table-head {
        font-size: 16px;
        padding: 15px;
    }

    .info-tables__row {
        font-size: 14px;
    }

    .info-tables__columns {
        gap: 20px;
    }

    .info-tables__bottom {
        font-size: 14px;
    }

    .info-tables {
        padding-bottom: 40px;
    }
}

/** Calculator */

.calculator {
    padding-bottom: 100px;
    background: var(--white);
}

.calculator__title {
    margin: 0 0 30px;
    color: var(--black);
    font-size: 40px;
    font-weight: 700;
}

.calculator__description {
    max-width: 75%;
    margin: 0 0 50px;
    color: var(--primary);
    font-size: 24px;
    font-weight: 400;
}

.calculator__box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding: 50px;
    border-radius: var(--radius2);
    background: var(--white);
    box-shadow: var(--box-shadow);
}

.calculator__results {
    padding-left: 50px;
    border-left: 1px solid #d7d7d7;
}

.calculator__section-title {
    margin: 0 0 30px;
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.calculator__field {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 20px;
    color: var(--black);
    font-size: 20px;
    font-weight: 500;
}

.calculator__field--with-note {
    align-items: start;
}

.calculator__input-wrap {
    height: 49px;
    padding: 13px 20px;
    border: 1px solid var(--primary);
    border-radius: var(--radius1);
    background: var(--white);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    gap: 10px;
}

.calculator__input-wrap input {
    width: 100%;
    border: none!important;
    outline: none;
    background: transparent;
    color: var(--black);
    font-size: 20px;
    line-height: 1;
    font-weight: 400;
}

.calculator__input-wrap input::placeholder {
    color: var(--black);
}

.calculator__input-wrap span {
    color: var(--black);
    font-size: 20px;
    line-height: 1;
    white-space: nowrap;
}

.calculator__input-note {
    margin: 7px 0 0;
    color: #8a8a8a;
    font-size: 15px;
}

.calculator__divider {
    width: 100%;
    height: 1px;
    margin: 40px 0;
    background: #D9D9D9;
}

.calculator__payment-label {
    margin: 0 0 40px;
    color: var(--black);
    font-size: 20px;
    font-weight: 600;
}

.calculator__payment-value {
    margin: 0 0 20px;
    color: var(--secondary);
    font-size: 64px;
    font-weight: 700;
}

.calculator__payment-note {
    margin: 0;
    color: var(--black);
    font-size: 20px;
    font-weight: 400;
}

.calculator__result-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 25px;
    color: var(--black);
    font-size: 20px;
    font-weight: 500;
}

.calculator__result-row strong {
    color: #878787;
    font-size: 24px;
    font-weight: 500;
    text-align: right;
}

.calculator__button,
.calculator__button:visited {
    padding: 21px 0;
    width: 80%;
    margin: 0 auto;
    border-radius: var(--radius2);
    background: var(--primary);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.calculator__button:hover {
    color: var(--white);
    opacity: 0.9;
}

.calculator__bottom-note {
    margin: 50px 0 0;
    color: var(--black);
    font-size: 24px;
    font-weight: 400;
}

@media (max-width: 1536px) {
    .calculator__title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .calculator__description {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .calculator__box {
        gap: 30px;
        padding: 30px;
    }

    .calculator__section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .calculator__field {
        gap: 30px;
        font-size: 18px;
        margin-bottom: 15px;
    }

    .calculator__input-wrap input {
        font-size: 18px;
    }

    .calculator__input-wrap span {
        font-size: 16px;
    }

    .calculator__input-note {
        font-size: 13px;
    }

    .calculator__divider {
        margin: 25px 0;
    }

    .calculator__payment-label {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .calculator__payment-value {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .calculator__payment-note {
        font-size: 16px;
    }

    .calculator__result-row {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .calculator__result-row strong {
        font-size: 20px;
    }

    .calculator__button {
        padding: 16px 0;
        font-size: 18px;
    }

    .calculator__bottom-note {
        font-size: 20px;
        margin-top: 30px;
    }

    .calculator {
        padding-bottom: 60px;
    }
}

@media (max-width: 1024px) {
    .calculator__title {
        font-size: 26px;
    }

    .calculator__description {
        font-size: 18px;
        max-width: 100%;
    }

    .calculator__box {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .calculator__section-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .calculator__field {
        gap: 20px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .calculator__input-wrap {
        height: 40px;
        padding: 12px 15px;
    }

    .calculator__input-wrap input {
        font-size: 14px;
    }

    .calculator__input-wrap span {
        font-size: 12px;
    }

    .calculator__divider {
        margin: 15px 0;
    }

    .calculator__input-note {
        font-size: 11px;
    }

    .calculator__results {
        padding-left: 0;
        border-left: 0;
    }

    .calculator__payment-label {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .calculator__payment-value {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .calculator__payment-note {
        font-size: 12px;
    }

    .calculator__result-row {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .calculator__result-row strong {
        font-size: 16px;
    }

    .calculator__button {
        width: 60%;
        padding: 12px 0;
        font-size: 14px;
    }

    .calculator__bottom-note {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .calculator__title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .calculator__description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .calculator__section-title {
        font-size: 14px;
    }

    .calculator__field {
        grid-template-columns: 1fr;
        gap: 5px;
        font-size: 12px;
    }

    .calculator__box {
        gap: 10px;
    }

    .calculator__payment-value {
        font-size: 30px;
    }

    .calculator__payment-label {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .calculator__bottom-note {
        font-size: 16px;
        margin-top: 20px;
    }

    .calculator {
        padding-bottom: 40px;
    }
}

/** Review Cards */

.reviews-cards {
    padding-bottom: 100px;
    background: var(--white);
    overflow: hidden;
}

.reviews-cards__title {
    margin: 0 0 30px;
    color: var(--black);
    font-size: 40px;
    font-weight: 700;
}

.reviews-cards__description {
    margin: 0 0 50px;
    color: var(--black);
    font-size: 24px;
    font-weight: 400;
}

.reviews-cards__slider-wrap {
    position: relative;
}

.reviews-cards__swiper {
    padding: 10px!important;
}

.reviews-cards__slide {
    height: auto;
}

.reviews-cards__card {
    margin-top: 100px;
    position: relative;
    height: 100%;
    padding: 140px 30px 73px;
    border-radius: var(--radius2);
    background: var(--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
    text-align: center;
}

.reviews-cards__image-wrap {
    position: absolute;
    top: -100px;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translateX(-50%);
    border-radius: 50%;
    overflow: hidden;
}

.reviews-cards__image {
    display: block;
    width: 100%;
    height: 100%!important;
    object-fit: cover;
    object-position: center;
}

.reviews-cards__name {
    margin: 0 0 20px;
    color: var(--black);
    font-size: 24px;
    font-weight: 700;
}

.reviews-cards__text {
    margin: 0 0 20px;
    color: var(--black);
    font-size: 20px;
    font-weight: 500;
}

.reviews-cards__stars {
    margin: 0 0 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.reviews-cards__stars svg {
    width: 30px;
    height: auto;
}

.reviews-cards__stars span:last-child {
    letter-spacing: 0;
}

.reviews-cards__position {
    margin: 0;
    color: var(--black);
    font-size: 20px;
    font-weight: 700;
}

.reviews-cards__arrow {
    position: absolute;
    padding: 0;
    top: 50%;
    z-index: 5;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    cursor: pointer;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-cards__arrow svg {
    width: 24px;
    height: auto;
}

.reviews-cards__arrow--prev {
    left: -66px;
}

.reviews-cards__arrow--next {
    right: -66px;
}

.reviews-cards__arrow:hover {
    background: var(--primary);
    color: var(--white);
    opacity: 0.9;
}

@media (max-width: 1536px) {
    .reviews-cards {
        padding-bottom: 60px;
    }

    .reviews-cards__title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .reviews-cards__description {
        font-size: 20px;
        margin-bottom: 30px;
    }
}

@media (max-width: 1199px) {
    .reviews-cards__arrow--prev {
        left: -24px;
    }

    .reviews-cards__arrow--next {
        right: -24px;
    }
}

@media (max-width: 1024px) {
    .reviews-cards__title {
        font-size: 26px;
    }

    .reviews-cards__description {
        font-size: 18px;
    }

    .reviews-cards__image-wrap {
        top: -70px;
        width: 140px;
        height: 140px;
    }

    .reviews-cards__card {
        margin-top: 70px;
        padding: 90px 30px 43px;
    }

    .reviews-cards__name {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .reviews-cards__text {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .reviews-cards__stars {
        gap: 15px;
        margin-bottom: 15px;
    }

    .reviews-cards__stars svg {
        width: 20px;
    }

    .reviews-cards__position {
        font-size: 14px;
    }

    .reviews-cards__arrow svg {
        width: 15px;
    }

    .reviews-cards__arrow {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 991px) {
    .reviews-cards__description {
        margin-bottom: 110px;
    }

    .reviews-cards__arrow {
        display: none;
    }
}

@media (max-width: 575px) {
    .reviews-cards__title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .reviews-cards__description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .reviews-cards__card {
        padding-left: 20px;
        padding-right: 20px;
    }

    .reviews-cards__image-wrap {
        top: -50px;
        width: 100px;
        height: 100px;
    }

    .reviews-cards__card {
        margin-top: 50px;
        padding: 60px 30px 23px;
    }

    .reviews-cards__name {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .reviews-cards__text {
        font-size: 12px;
    }

    .reviews-cards__stars {
        gap: 10px;
        margin-bottom: 10px;
    }

    .reviews-cards__position {
        font-size: 12px;
    }

    .reviews-cards {
        padding-bottom: 40px;
    }
}

/** FAQ Cards */

.faq-cards {
    padding-bottom: 100px;
    background: var(--white);
}

.faq-cards__title {
    margin: 0 0 50px;
    color: var(--black);
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
}

.faq-cards__inner {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 150px;
    align-items: center;
}

.faq-cards__image-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.faq-cards__image {
    display: block;
    max-width: 387px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.faq-cards__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-cards__item {
    border-radius: var(--radius2);
    background: var(--white);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-cards__question {
    width: 100%;
    padding: 25px 30px;
    border: none;
    background: var(--white);
    color: var(--black);
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.faq-cards__question span:first-child {
    font-size: 20px;
    font-weight: 700;
}

.faq-cards__icon {
    position: relative;
    width: 50px;
    min-width: 50px;
    height: 50px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.faq-cards__icon::before,
.faq-cards__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--primary);
    transform: translate(-50%, -50%);
}

.faq-cards__icon::before {
    width: 36px;
    height: 4px;
}

.faq-cards__icon::after {
    width: 4px;
    height: 36px;
}

.faq-cards__item.is-active .faq-cards__icon {
    transform: rotate(90deg);
}

.faq-cards__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-cards__answer-inner {
    padding: 0 30px 24px;
    color: #333333;
    font-size: 16px;
    font-weight: 400;
}

@media (max-width: 1536px) {
    .faq-cards__title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .faq-cards__inner {
        gap: 50px;
    }

    .faq-cards__list {
        gap: 20px;
    }

    .faq-cards__question span:first-child {
        font-size: 18px;
    }

    .faq-cards__question {
        padding: 15px 30px;
    }

    .faq-cards__icon::after {
        width: 3px;
        height: 25px;
    }

    .faq-cards__icon::before {
        width: 25px;
        height: 3px;
    }

    .faq-cards__icon {
        width: 40px;
        min-width: 40px;
        height: 40px;
    }

    .faq-cards {
        padding-bottom: 60px;
    }
}

@media (max-width: 1024px) {
    .faq-cards__title {
        font-size: 26px;
    }

    .faq-cards__question span:first-child {
        font-size: 16px;
    }

    .faq-cards__icon::after {
        height: 18px;
    }

    .faq-cards__icon::before {
        width: 18px;
    }

    .faq-cards__list {
        gap: 10px;
    }

    .faq-cards__question {
        padding: 10px 18px;
    }

    .faq-cards__answer-inner {
        padding: 0 18px 10px;
        font-size: 14px;
    }

    .faq-cards__icon {
        width: 30px;
        min-width: 30px;
        height: 30px;
    }
}

@media (max-width: 991px) {
    .faq-cards__inner {
        grid-template-columns: 1fr;
    }

    .faq-cards__image {
        max-width: 260px!important;
    }
}

@media (max-width: 575px) {
    .faq-cards__title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .faq-cards__question {
        min-height: 72px;
        padding: 18px;
    }

    .faq-cards__icon {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
    }

    .faq-cards__image {
        max-width: 150px!important;
    }

    .faq-cards__inner {
        gap: 20px;
    }

    .faq-cards__question span:first-child {
        font-size: 14px;
    }

    .faq-cards__answer-inner {
        font-size: 12px;
    }

    .faq-cards {
        padding-bottom: 40px;
    }
}

/** Feedback Form */

.feedback-form {
    padding-bottom: 100px;
    background: var(--white);
}

.feedback-form__title {
    margin: 0 0 30px;
    color: var(--black);
    font-size: 40px;
    font-weight: 700;
}

.feedback-form__description {
    max-width: 75%;
    margin: 0 0 50px;
    color: var(--black);
    font-size: 24px;
    font-weight: 400;
}

.feedback-form__form {
    max-width: 60%;
    margin: 0 auto;
}

.feedback-form__form .t64f-messages {
    margin: 0;
}

.feedback-form__form form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.feedback-form__form p {
    margin: 0;
}

.feedback-form__form .wpcf7-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feedback-form__form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    margin-bottom: 0;
}

.feedback-form__form .feeback-input {
    width: 100%;
    padding: 36px 58px;
    border: none;
    border-radius: var(--radius2);
    outline: none;
    background: var(--white);
    box-shadow: var(--box-shadow);
    color: var(--black);
    font-size: 24px;
    font-weight: 700;
}

.feedback-form__form .feeback-input::placeholder {
    color: var(--black)!important;
}

.feedback-form__form select {
    appearance: none;
}

.feedback-form__form button[type="submit"] {
    width: 60%;
    margin-top: 20px;
    padding: 21px 25px;
    border-radius: var(--radius2);
    background: var(--primary);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.feedback-form__form button[type="submit"]:hover {
    opacity: 0.9;
}

.feedback-form__form .wpcf7-spinner {
    display: none;
}

.feedback-form__form .wpcf7-not-valid-tip {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
}

.feedback-form__form .wpcf7-response-output {
    width: 100%;
    margin: 20px 0 0;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 15px;
}

/*  */
.feedback-form input[type="hidden"],
.feedback-form .wpcf7-form-control-wrap:has(input[type="hidden"]) {
    display: none !important;
}

@media (max-width: 1536px) {
    .feedback-form__title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .feedback-form__description {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .feedback-form__form form {
        gap: 20px;
    }

    .feedback-form__form .feeback-input {
        padding: 26px 38px;
        font-size: 18px;
    }

    .feedback-form__form button[type="submit"] {
        margin-top: 10px;
        padding: 15px 25px;
        font-size: 18px;
    }

    .feedback-form {
        padding-bottom: 60px;
    }
}

@media (max-width: 1024px) {
    .feedback-form__title {
        font-size: 26px;
    }

    .feedback-form__description {
        font-size: 18px;
        max-width: 100%;
    }

    .feedback-form__form form {
        gap: 10px;
    }

    .feedback-form__form .feeback-input {
        padding: 15px 25px;
        font-size: 14px;
    }

    .feedback-form__form button[type="submit"] {
        padding: 12px 18px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .feedback-form__title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .feedback-form__description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .feedback-form__form input,
    .feedback-form__form select,
    .feedback-form__form textarea {
        min-height: 44px;
        padding: 18px 24px;
        font-size: 17px;
    }

    .feedback-form__form input[type="submit"] {
        width: 100%;
    }

    .feedback-form__form {
        max-width: 100%;
    }

    .feedback-form__form .feeback-input {
        padding: 10px 18px;
        font-size: 12px;
    }

    .feedback-form__form button[type="submit"] {
        font-size: 12px;
    }

    .feedback-form {
        padding-bottom: 40px;
    }
}

/** Text Section */

.text-section > div {
    padding-top: 160px!important;
    padding-bottom: 100px!important;
}

.text-section a,
.text-section a:visited {
    color: var(--secondary);
    transition: all 200ms ease;
}

@media (max-width: 1280px) {
    .text-section > div {
        padding-top: 100px !important;
        padding-bottom: 60px !important;
    }
}

@media (max-width: 1024px) {
    .text-section > div {
        padding-top: 80px !important;
    }
}

@media (max-width: 575px) {
    .text-section > div {
        padding-bottom: 40px !important;
    }
}

/* ===== Thank You ===== */

.thankyou-wrapper {
    padding-top: 100px;
    padding-bottom: 100px;
}

.thankyou-wrapper .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.thankyou-box {
    background: var(--primary);
    border-radius: 40px;
    padding: 75px 30px;
    max-width: 1200px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.thankyou-title {
    font-size: 38px;
    font-weight: 700;
    margin: 0;
}

.thankyou-description {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.thankyou-button {
    width: 40%;
    display: inline-block;
    padding: 8px 25px;
    font-size: 24px;
    font-weight: 700;
    border-radius: 20px;
    text-decoration: none;
    border: 2px solid #ffffff;
    transition: all 0.25s ease;
    background-color: #0f203e !important;
    color: #ffffff;
}

.thankyou-button:hover {
    transform: translateY(-2px);
    background-color: #DAA542 !important;
    border-color: #DAA542;
    color: #0f203e;
}

/* Опционально: активное состояние (при нажатии) */
.thankyou-button:active {
    transform: translateY(-2px);
    background-color: #c49438 !important;
}

@media screen and (max-width: 1380px) {
    .thankyou-title {
        font-size: 32px;
    }

    .thankyou-description {
        font-size: 20px;
    }

    .thankyou-button {
        font-size: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .thankyou-wrapper {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .thankyou-box {
        padding: 55px 30px;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .thankyou-button {
        width: 80%;
    }
}

@media screen and (max-width: 540px) {
    .thankyou-box {
        padding: 25px 15px;
        gap: 20px;
    }

    .thankyou-title {
        font-size: 24px;
    }

    .thankyou-description {
        font-size: 16px;
    }

    .thankyou-button {
        font-size: 16px;
    }
}