body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: #222;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.site-header {
    background: #001f3f;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.why-section {
    background: #f9f9f9;
    padding: 40px 20px;
}

.reasons {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.reasons li {
    background: #eee;
    padding: 15px;
    flex: 1;
    border-radius: 8px;
}

.form-section {
    background: #f0f0f0;
    padding: 40px 20px;
}


form input[type="text"], form input[type="tel"] {
    padding: 10px;
    font-size: 16px;
    gap: 15px;
}

form button {
    background: #2BB048;
    color: white;
    padding: 12px;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.site-footer {
    background: #001f3f;
    color: #fff;
    text-align: center;
    padding: 20px;
}

@media (max-width: 768px) {
    .reasons {
        flex-direction: column;
    }

    .container {
        padding: 15px;
    }
}

form {
    display: flex;
    flex-direction: column;
}

.hero {
    background: url('../img/hero-bg.jpg') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-logo {
    height: 100px;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid #E8C07F;
    padding-bottom: 10px;
}

.hero-logo img {
    max-height: 100%;

}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .5);
    height: 100%;
    width: 100%;
}

.hero-text, .hero-form {
    position: relative;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    color: #fff;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #E8C07F;
}

.hero-text p {
    margin-bottom: 20px;
}

.hero-text ul {
    list-style: none;
}

@media (max-width: 768px) {
    .hero-text ul {
        padding: 0;
    }

    .hero-logo img {
        display: block;
        margin: 0 auto;
    }
}

.hero-text li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.hero-text li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #E8C07F;
}

.hero-form {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    color: #000;
    max-width: 400px;
}

.hero-form h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.hero-form p {
    font-size: 14px;
    margin-bottom: 20px;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.hero-form label {
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.hero-form .checkbox {
    display: flex;
    align-items: center;
    font-size: 13px;
    margin-bottom: 15px;
}

.hero-form .checkbox input {
    margin-right: 8px;
}

.hero-form button {
    width: 100%;
    padding: 12px;
    background-color: #30c04f;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;

    }

    .hero-logo {
        height: 60px;
    }


}

.consult-block {
    max-width: 1100px;
    margin: 40px auto;
    background: #fff;
    border-radius: 25px;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    color: black;
    background-color: #F6F6F6;
    overflow: hidden;
}


.consult-left {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
    border-right: 1px solid #eee;
    background-color: #F0F0F0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;

}

.consult-left-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 50px;
    background-color: white;
    max-width: 300px;
    min-width: 300px;
    margin: 0 auto;
}

.consult-left-item img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.consult-left-item span {
    font-size: 16px;
}

.consult-left-item span strong {
    color: green;
}

.consult-right {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.consult-right h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.consult-right input[type="text"],
.consult-right input[type="email"],
.consult-right input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.checkbox {
    font-size: 13px;
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.checkbox input {
    margin-right: 5px;
}

.consult-right button {
    background: #30c04f;
    color: #fff;
    border: none;
    padding: 12px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

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

.title-block h2 {
    font-size: 24px;
    color: #1a1a1a;
}

.title-block p {
    color: #666;
    font-size: 14px;
}

.green {
    color: green;
}

@media (max-width: 768px) {
    .consult-block {
        flex-direction: column;
        padding: 20px;
    }

    .consult-left,
    .consult-right {
        border: none;
        /*padding: 0;*/
    }

    .consult-left {
        /*margin-bottom: 30px;*/
    }
}

.services-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.services-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.services-section p.subtitle {
    text-align: center;
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.services-left,
.services-right {
    flex: 1;
    min-width: 300px;
}

.services-left {
    background-color: #f8f8f8;
    border-radius: 16px;
    padding: 30px 25px;
}

.services-left h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.services-left ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.services-left ul li {
    font-size: 15px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 12px;
}

.services-left ul li::before {
    content: "•";
    color: #3498db;
    position: absolute;
    left: 0;
    font-size: 20px;
    top: 0;
    line-height: 1;
}

.services-left .phone-block {
    font-size: 16px;
    margin-top: 10px;
}

.services-left .phone-number {
    font-size: 20px;
    color: #27ae60;
    font-weight: bold;
    margin-top: 5px;
}

.services-right h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.services-right ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.services-right ul li {
    font-size: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.services-right ul li::before {
    content: "✔";
    color: #2ecc71;
    margin-right: 10px;
    font-weight: bold;
}

.services-right .cta {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 15px;
}

.services-right .cta-button {
    background-color: #30c04f;
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.services-right .cta-button:hover {
    background-color: #28a745;
}

@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
    }
}

.consultation-wrapper {
    background-color: #1AAA6F;
    padding-top: 25px;
    padding-bottom: 25px;
}

.consultation {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    font-family: Arial, sans-serif;
    color: #000;
    border: 1px solid #E5E5E5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: white;
    border-radius: 25px;
    display: flex;
}

@media (max-width: 768px) {
    .consultation-wrapper {
    }

    .consultation {
        max-width: 80%;

    }
}

.consultation-left, .consultation-right {
    flex: 1;
}

.consultation__title {
    font-size: 45px;
    margin: 0 0 20px;
    color: #000;
    font-weight: bold;
}

.consultation-left__line {
    height: 4px;
    width: 100px;
    background-color: #dead71;
    margin-bottom: 25px;
}

.green {
    color: #00AE4B !important;
}

.consultation__title span {
    color: #00AE4B;
}

.consultation__contacts {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #333;
}

.consultation__phone {
    font-weight: bold;
    color: #000;
}

.consultation__email {
    color: #000;
}

.consultation__subtitle {
    font-size: 28px;
    margin: 25px 0 15px;
    font-weight: bold;
}

.consultation__description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #333;
}

.consultation__field {
    margin-bottom: 15px;
}

.consultation__input {
    width: 100%;
    padding: 12px;
    border: 1px solid #D9D9D9;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.consultation__checkbox {
    display: flex;
    align-items: center;
    margin: 20px 0;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.consultation__checkbox input {
    margin-right: 10px;
}

.consultation__button {
    width: 100%;
    padding: 12px;
    background: #28A745;
    color: #FFF;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.consultation__button:hover {
    background: #333;
}

@media (max-width: 900px) {
    .consultation {
        flex-direction: column;
    }
}

/* Общие стили */
.services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    color: #333;
}

.services__title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000;
}

.services__description {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

/* Блок преимуществ */
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit {
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.benefit img {
    height: 50px;
    padding: 15px;
    border: 2px solid #DEAC6F;
    border-radius: 3px;
    margin: 0 auto;
    display: block;
    min-width: 45px;
}

.benefit__title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000;
}

.benefit__text {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

/* Блок этапов */
.stages__title {
    font-size: 28px;
    font-weight: bold;
    margin: 40px 0 15px;
    color: #000;
    text-align: center;
}

.stage img {
    height: 60px;
}

.stages__subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
    text-align: center;
}

.stages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stage {
    position: relative;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.stage__number {
    font-size: 60px;
    position: absolute;
    top: 30px;
    right: 30px;
    color: #d1d1d1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.stage__title {
    font-size: 20px;
    font-weight: bold;
    margin: 20px 0 15px;
    color: #000;
}

.stage__text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #555;
}

.stage__result {
    font-size: 16px;
    line-height: 1.5;
    color: #000;
}

/* Блок статистики */
.stats {
    padding: 30px;
    border: 4px solid #DEAC6F;
    margin-bottom: 40px;
    text-align: center;

}

.stats img {
    height: 40px;
    display: block;
    margin: 20px auto 0 auto;
}

.stats__text {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000;
}

.stats__note {
    font-size: 18px;
    line-height: 1.5;
    color: #555;
}

/* Блок CTA */
.consultation-cta {
    text-align: center;
    padding: 30px;
    background: #000;
    color: #fff;
    border-radius: 8px;
}

.consultation-cta__text {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.consultation__phone {
    font-size: 28px;
    font-weight: bold;
}

.ratings-block {
    max-width: 100%;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.ratings-block__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.ratings-block__subtitle {
    font-size: 16px;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
}

.ratings-block__divider {
    height: 1px;
    background: #e0e0e0;
    margin: 15px 0;
}

.ratings-block__platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.ratings-block__platform {
    flex: 1;
    min-width: 160px;
    max-width: 200px;
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 6px;
}

.ratings-block__platform-header {
    margin-bottom: 10px;
}

.ratings-block__platform-name {
    max-width: 150px;
    min-height: 41px;
}

.ratings-block__platform-service {
    font-size: 13px;
    color: #777;
    margin: 0;
}

.ratings-block__platform-rating {
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0 4px;
}

.ratings-block__platform-rating span {
    font-size: 14px;
    color: #777;
    font-weight: 400;
}

.ratings-block__platform-reviews {
    font-size: 13px;
    color: #777;
    margin: 0;
}

.ratings-block__platform-rating .big {
    font-size: 32px;
    font-weight: 700;
}

.slider-container {
    max-width: 900px;
    margin: 0 auto;
}

.slider {
    position: relative;
    height: 400px; /* фиксируем */

}

.slide {
    background: #fff;
    text-align: center;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.slide h3 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #333;
}

.slide p {
    font-size: 16px;
    color: #555;
}

/* Slick overrides */
.slick-prev:before, .slick-next:before {
    color: #333;
}

.slide img {
    width: 100%;
}

.mob {
    display: none !important;
}

@media (max-width: 768px) {
    .slide {
        padding: 40px 20px;
    }

    .desktop {
        display: none !important;
    }

    .mob {
        display: block !important;
    }

    .slider {
        position: relative;
        height: auto; /* фиксируем */

    }

}

.slick-prev:before, .slick-next:before {
    color: green !important;
}

.contract-wrapper {
    background-image: url("../img/contract-bg.jpg");
    position: relative;
    background-color: rgba(0, 0, 0, .5);

}

.contract-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .5);
}

.contract-block {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;

}

.contract-block__title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.3;
    z-index: 1;
}

.contract-block__subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: white;
}

.contract-block__divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 25px auto;
    max-width: 600px;
}

.contract-block__text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
    margin-top: 0;
}

.contract-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-bottom: 30px;
}

.contract-feature {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
}

.contract-feature:nth-child(2) {
    transform: translateX(0px);
}

.contract-feature:nth-child(3) {
    transform: translateX(25px);
}

.contract-feature:nth-child(4) {
    transform: translateX(50px);
}

.contract-feature:nth-child(5) {
    transform: translateX(75px);
}


.contract-feature__title {
    display: block;
    font-size: 18px;
    color: #FCDDBA;
    text-align: left;
}

.contract-feature__text {
    font-size: 14px;
    line-height: 1.5;
    color: #c2c2c2;
    margin: 0;
    text-align: left;
}


.contract-block__footer {
    font-size: 16px;
    line-height: 1.6;
    color: white;
}

@media (max-width: 600px) {
    .contract-features {
        grid-template-columns: 1fr;
    }

    .contract-block__title {
        font-size: 24px;
    }

    .contract-block__subtitle {
        font-size: 16px;
    }

    .contract-feature:nth-child(2) {
        transform: translateX(0px);
    }

    .contract-feature:nth-child(3) {
        transform: translateX(0);
    }

    .contract-feature:nth-child(4) {
        transform: translateX(0);
    }

    .contract-feature:nth-child(5) {
        transform: translateX(0);
    }
}

.contract-features-img {
    height: 400px;
    display: block;
    margin: 0 auto;
}

.contract-feature img {
    grid-row: 1 / span 2; /* занимает две строки */
    grid-column: 1;
    width: 22px;
    height: 22px;
    padding: 10px;
    border: 2px solid #FCDDBA;
    margin-right: 5px;
}

.contract-feature__title {
    grid-row: 1;
    grid-column: 2;
}

.contract-feature__text {
    grid-row: 2;
    grid-column: 2;
}

.contract-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.company {
    padding: 60px 20px;
    background-color: #fff;
}

.company__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.company__content {
    flex: 1;
    min-width: 300px;
}

.company__title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.company__subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    text-align: center;
}

.company__mission-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.company__text p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.company__slider {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    border-radius: 12px;
}

.slider__item {
    position: relative;
}

.slider__image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.slick-prev, .slick-next {
    background-color: #2ecc71;
    border: none;
    color: #fff;
    font-size: 28px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
}

@media (max-width: 900px) {
    .company__container {
        flex-direction: column;
        align-items: center;
    }

    .company__slider {
        max-width: 100%;
    }
}

.principles {
    padding: 0 20px;
    background-color: #fff;
    font-family: sans-serif;
}

.principles__container {
    max-width: 1200px;
    margin: 0 auto;
}

.principles__title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.principles__subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

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

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

    }
}

.principles__item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.principles__icon {
    min-width: 35px;
    min-height: 35px;
    background-color: #f5d7a1;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    line-height: 35px;
    border-radius: 6px;
}

.principles__item-title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
}

.principles__item-text {
    margin: 0;
    color: #444;
    font-size: 14px;
    line-height: 1.5;
}

.principles__quote {
    background-color: #f7f7f7;
    padding: 30px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.principles__quote-icon {
    font-size: 70px;
    color: #d5a86e;
}

.principles__quote-content {
    max-width: 600px;
}

.principles__quote-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.principles__quote-subtitle {
    font-size: 22px;
    font-style: italic;
    /*color: #337ab7;*/
    margin-bottom: 10px;
}

.principles__quote-text {
    font-size: 14px;
    color: #444;
}

.iti {
    width: 100%;
}

.sliderFooter {
    display: flex;

}

.sliderFooter .slick-slide {
    padding: 0 10px; /* по 10px слева и справа = 20px gap между слайдами */
    box-sizing: border-box;
}

.team-slider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 15px;
    text-align: center;
}

.team-title {
    font-size: 24px;
    font-weight: 700;
}

.team-subtitle {
    margin: 10px 0 30px;
    font-size: 14px;
    color: #666;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-card {
    background: #f9f9f9;
    border-radius: 10px;
    text-align: center;
    margin: 0 10px;
    min-height: 100%;
    height: 100%;
}

.team-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    max-height: 390px;
}

@media (max-width: 768px) {
    .team-card img {
        max-height: 100%;
    }
}

.team-role {
    color: #ff6600;
    font-size: 14px;
    margin-bottom: 5px;
}

.team-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-desc {
    font-size: 14px;
    color: #444;
}

.slick-track {
    display: flex;
}

.sliderFooter .slick-list {
    display: flex;
    align-items: stretch;
}

.sliderFooter .slick-track {
    display: flex;
    align-items: stretch;
}

.sliderFooter .slick-slide > div {
    height: 100%;
}

.team-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.consultation-block-wrapper {
    background-image: url("../img/consultation-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.consultation-block {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    display: flex;
    gap: 30px;
}

.consultation-block__title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
    color: #FCDEBA;
}

.consultation-block__subtitle {
    font-size: 24px;
    text-align: left;
    margin-bottom: 25px;
    color: white;
    line-height: 1.5;
}

.consultation-features {
    margin: 0 0 30px 0;
    padding-left: 20px;
}

.consultation-feature {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.5;
    color: white;
    list-style: none;
}

.consultation-feature span {
    color: #FCDEBA;
}

.consultation-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
}

.consultation-form__title {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 5px 0;
    text-align: center;
    color: #000;
}

.consultation-form__subtitle {
    font-size: 14px;
    text-align: center;
    margin: 0 0 20px 0;
    color: #555;
}

.form-group {
    margin-bottom: 15px;
}


.form-label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
}

.form-checkbox {
    display: flex;
    align-items: center;
    margin: 20px 0;
    font-size: 14px;
}

.form-checkbox input {
    margin-right: 10px;
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: #2a5885;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit:hover {
    background: #1e4b7b;
}

@media (max-width: 480px) {
    .consultation-block {
        padding: 20px;
    }

    .consultation-block__title {
        font-size: 20px;
    }
}

.consultation-feature img {
    width: 20px;
    transform: translate(-5px, 5px);
}

.footer-form {
    width: 60%;
}

@media (max-width: 768px) {
    .consultation-block {
        flex-direction: column;

    }
    .footer-form {
        width: 100%;
        box-sizing: border-box;
    }
}
.contacts-block {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    font-family: Arial, sans-serif;
    color: #333;
}

.contacts-block__title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    color: #000;
}

.contacts-block__subtitle {
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.5;
}

.contacts-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.contact-item {
 text-align: center;
}

.contact-item__title {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #8e95a6;
}

.contact-item__text {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    color: #333;
}

.contact-item__text--phone {
    font-size: 16px;
}

.contact-item__text--email {
    color: #2a5885;
}

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

    .contacts-block {
        padding: 20px;
    }

    .contacts-block__title {
        font-size: 22px;
    }
}
.contact-item img{
    height: 40px;
    margin-bottom: 15px;
}
#checkbox{
    margin-bottom: 10px;
}
.input-wrapper{
    margin-bottom: 10px;
}
.contact-item a{
    text-decoration: none;
    color: black;
}
.policy-page{
    min-height: 150px;
}
.policy-text{
    width: 80%;
    margin: 50px auto;
}
.policy-text p{
    width: 80%;
}
.back-wrapper {
    text-align: center; /* центрирование по горизонтали */
    margin-top: 20px; /* можно убрать или изменить */
}

.back-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #30C04F;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-family: sans-serif;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #30C04b;
}
.links{
    display: flex;
    justify-content: center;
    gap: 50px;
    font-weight: 100;
}
.contact-item h3 a{
    font-weight: 100;
    color:black;
}