html {
    scroll-behavior: smooth;
}
a, a:visited, a:hover {
    text-decoration: none;
    color: #666;
}

body {
    margin: 0;
    font-family: 'Nunito', sans-serif;
    color: #b4634d;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #d4c4b3;
    color: #2d1e1b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 50px;
    /*position: relative;*/
}

.logo img {
    height: 50px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px; /* расстояние между логотипом и текстом */
}

.brand-name {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #666; /* белый текст */
    font-size: 16px;
    font-weight: bold;
}

nav a:hover {
    color: #000;
}

.dropdown::after {
    content: ' ▼';
    font-size: 10px;
}

.btn {
    background-color: #3e2c28;
    font-weight: 600;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 3px;
}

.btn:hover {
    opacity: 0.9;
}

.contact-actions {
    font-size: 16px;
    color: #666;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-actions:hover {
    color: #000;
}

.contact-actions .phone {
    font-size: 14px;
    cursor: pointer;
}

.contact-actions .icon {
    width: 20px;
    height: 20px;
}
/* Desktop Header */
nav,
.btn {
    display: flex;
}

.burger,
.mobile-menu {
    display: none;
}
.mobile-header {
    display: none;
}
/* Mobile Header */
@media (max-width: 768px) {
    nav,
    .contact-actions .btn,
    .contact-actions {
        display: none;
    }

    .burger {
        display: block;
        font-size: 24px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .mobile-menu {
        display: none;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        background-color: #d4c4b3;
        color: #666!important;
        font-weight: bold;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        z-index: 999;
    }

    .mobile-contacts {
        display: block;
    }
    body.menu-open .mobile-menu {
        display: flex;
    }
}

.mobile-menu a {
    text-decoration: none;

    font-size: 14px;
    padding: 10px 0;
}

.mobile-menu a:hover {
    color: #000;
}

.mobile-menu .btn {
    background-color: #3e2c28;
    color: #fff;

    padding: 10px;
    text-align: center;
    border-radius: 3px;
    margin-bottom: 2px;
    text-decoration: none;
}
.contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}

.contact-row .phone {
    font-size: 14px;

    text-decoration: none;
}

.contact-row .icon {
    width: 20px;
    height: 20px;
}




.about-section {
    background-color: rgba(255, 218, 185, 0.3);
    padding: 80px 20px;
}

.about-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-text {
    flex: 1 1 60%;
}

.about-text h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-text p {
    color: #777;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-photo {
    flex: 1 1 35%;
    text-align: center;
}

.about-photo img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .about-text p {
        font-size: 15px;
    }

    .about-photo img {
        max-width: 80%;
        margin: 0 auto;
    }
}





.hero-section {
    display: flex;
    flex-direction: column;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-content {
    padding: 40px 20px;
    background-color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.hero-buttons {
    font-weight: 600;
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-primary {
    background-color: #3e2c28!important;
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.btn-link {
    text-decoration: none;

    font-size: 16px;
}

@media(min-width: 768px) {
    .hero-section {
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }

    .hero-image, .hero-content {
        width: 50%;
    }

    .hero-content {
        padding: 40px;
    }
}

.pricing-section {
    padding: 80px 20px;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: initial;
}

.pricing-header {
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 600;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin: 10px 0;
}

.section-description {
    color: #666;
}

.pricing-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    border: 1px solid #000;
    padding: 30px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
}

.card-subtitle {
    color: #666;
    margin-bottom: 15px;
}

.divider {
    height: 1px;
    background-color: #ddd;
    margin: 20px 0;
}

.price {
    font-size: 48px;
    font-weight: bold;
    margin: 10px 0;
}

.price-yearly {
    color: #666;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #000;

    padding: 12px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 20px;
}

.features-list {
    text-align: left;
    list-style: none;
    padding: 0;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #000;
}
.methods-section {
    padding: 80px 20px;
    background-color: #fff;
}

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

.methods-header {
    text-align: left;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 600;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin: 10px 0;
}

.section-description {
    font-size: 18px;
    color: #666;
}

.methods-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.method-item {
    flex: 1;
}

.method-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
}

.method-icon-block {
    margin: 0 auto;
}

.method-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.method-description {
    color: #666;
}

.methods-buttons {
    margin-top: 40px;
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid #000;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 15px;
}

.btn-text {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.faq-section {
    max-width: 1200px;
    text-align: center;
    padding: 80px 20px;
    margin: 0 auto;
}

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

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-description {
    text-align: center;
    margin-bottom: 40px;
    color: #777;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    font-size: 20px;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-toggle {
    display: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-bottom: 0;
    color: #777;
}

.faq-toggle:checked + .faq-question + .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-toggle:checked + .faq-question .faq-icon {
    transform: rotate(180deg);
}

.faq-contact {
    text-align: center;
    margin-top: 50px;
}

.faq-contact h4 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.btn-contact {
    margin-top: 20px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    background-color: #3e2c28;
    color: #fff;
}

.contact-section {
    padding: 80px 20px;
    background-color: rgba(255, 218, 185, 0.3);
}

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

.contact-map img {
    width: 500px;
    height: auto;
    object-fit: cover;
    max-width: 100%;
    border: 1px solid #ddd;
}

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

.contact-label {
    text-transform: uppercase;
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}

.contact-form h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-subtitle {
    margin-bottom: 20px;
    color: #777;
}

.contact-form label {
    display: block;
    margin: 15px 0 5px;
    font-weight: 600;
}

.contact-form .submit {
    background-color: #3e2c28;
    color: #fff;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
    border-radius: 4px;
}

.contact-form textarea {
    resize: none;
    height: 120px;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
    border-radius: 4px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    margin-top: 15px;
    font-size: 14px;
    color: #777;
}

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

.contact-form button {
    margin-top: 20px;
    padding: 10px 20px;
    background: #3e2c28;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.contact-map img {
    width: 500px;
    height: 600px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.contact-form {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-form input,
.contact-form textarea {
    background-color: #fff0ea;   /* светло-персиковый фон */
    color: #4b2e2e;              /* тёмно-персиковый текст */
    border: 1px solid #e5b5a0;   /* рамка */
}

/* Цвет текста плейсхолдера */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #b4846d;
}





.testimonials-section {
    padding: 60px 20px;
    background: #fff;
}

.container {
    max-width: 100%;
    margin: 0 auto;
}

.testimonials-section h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.subtext {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

.scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 265px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.quote {
    font-style: italic;
    font-size: 14px;
    text-align: center;
    margin-bottom: 15px;
}

.avatar {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
}

.name {
    font-weight: bold;
    font-size: 14px;
    margin: 0;
}

.desc {
    font-size: 12px;
    color: #777;
    margin: 0;
}

.scroll-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.scroll-btn {
    background: none;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 18px;
    cursor: pointer;
}
.testimonial-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    width: 300px;
    height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin: 10px;
    overflow: hidden;
}

.stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 10px;
}

.quote {
    flex-grow: 1;
    font-style: italic;
    color: #777;
    margin-bottom: 20px;
}

.bottom-info {
    text-align: center;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 5px auto;
    display: block;
}

.name {
    font-weight: bold;
    margin: 0;
}

.desc {
    font-size: 14px;
    color: #777;
    margin: 0;
}


.blog-section {
    padding: 60px 20px;
    background-color: rgba(255, 218, 185, 0.3);
}
.container {
    max-width: 90%;
    margin: 0 auto;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.blog-header small {
    font-size: 14px;
    color: #888;
}

.blog-header h2 {
    font-size: 28px;
    margin: 10px 0 5px;
}

.blog-header p {
    color: #777;
}

.blog-header a {
    font-size: 14px;
    text-decoration: none;
    font-weight: bold;
}

.blog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-card {
    flex: 1 1 calc(33.333% - 20px);
    border: 1px solid #ccc;
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-content h3 {
    font-size: 18px;
    margin: 0;
}

.blog-content p {
    font-size: 14px;
    color: #777;
}

.blog-content a {
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    margin-top: auto;
}

@media (max-width: 768px) {
    .blog-card {
        flex: 1 1 100%;
    }
}



.footer {
    background-color: #FAE5D3;
    font-weight: 600;
    padding: 30px 5%;
    color: #666;
}

.footer-container {
    display: flex;
    font-weight: 600;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    flex: 1;
    font-weight: 600;
    min-width: 250px;
}

.footer-logo {
    max-width: 100px;
    margin-bottom: 2px;
}

.footer-contact {
    font-weight: 600;
    margin: 4px 0;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.footer-social img {
    width: 24px;
    height: 24px;
}

.footer-right {
    font-weight: 600;
    flex-shrink: 0;
    min-width: 150px;
    text-align: left;
    margin-top: 20px;
}

.footer-links {
    font-weight: 600;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.footer-bottom {
    margin-top: 30px;
    border-top: 1px solid #ccc;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-right {
        text-align: left;
    }
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.blog-card {
    background-color: #fafafa;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
a[href^="tel"] {
    color: #666;
    text-decoration: none;
}
