* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    margin-right: 20px;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #b89968;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #a68756;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header-main {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-name {
    font-size: 28px;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: 1px;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-main a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-main a:hover {
    color: #b89968;
}

.ad-notice {
    font-size: 12px;
    color: #888888;
    padding: 5px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
    white-space: nowrap;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-left {
    padding: 60px;
    background-color: #f8f5f0;
}

.hero-content {
    max-width: 500px;
}

.hero-content h2 {
    font-size: 42px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 17px;
    color: #555555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-image {
    background-size: cover;
    background-position: center;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #b89968;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #a68756;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2c2c2c;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #2c2c2c;
}

.btn-secondary:hover {
    background-color: #2c2c2c;
    color: #ffffff;
}

.intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.content-block,
.image-block {
    flex: 1;
}

.content-block h3 {
    font-size: 32px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.content-block p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.image-block {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.services-grid {
    padding: 80px 0;
    background-color: #f8f5f0;
}

.section-heading {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    color: #2c2c2c;
    margin-bottom: 60px;
}

.services-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.service-info {
    padding: 30px;
}

.service-info h4 {
    font-size: 22px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.service-info p {
    font-size: 15px;
    color: #555555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #b89968;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 12px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #1a1a1a;
}

.form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.form-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h3 {
    font-size: 32px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
}

.form-container {
    flex: 1;
    background-color: #f8f5f0;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #b89968;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #b89968;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #a68756;
}

.testimonial-section {
    padding: 80px 0;
    background-color: #2c2c2c;
    color: #ffffff;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.testimonial-item p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #b89968;
    font-weight: 600;
}

.cta-final,
.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #f8f5f0;
}

.cta-final h3,
.cta-section h3 {
    font-size: 36px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.cta-final p,
.cta-section p {
    font-size: 17px;
    color: #555555;
    margin-bottom: 30px;
}

.footer-main {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #b89968;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #b89968;
}

.footer-disclaimer {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #aaaaaa;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #aaaaaa;
}

.page-hero {
    padding: 80px 0;
    background-color: #f8f5f0;
    text-align: center;
}

.page-hero h2 {
    font-size: 42px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 17px;
    color: #555555;
}

.about-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.philosophy-section {
    padding: 80px 0;
    background-color: #f8f5f0;
}

.values-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.values-section h3 {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    color: #2c2c2c;
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #f8f5f0;
    border-radius: 8px;
}

.value-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
}

.services-detailed {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail-item {
    margin-bottom: 80px;
}

.service-detail-item:last-child {
    margin-bottom: 0;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-detail-item.reverse .service-detail-split {
    flex-direction: row-reverse;
}

.service-detail-text,
.service-detail-image {
    flex: 1;
}

.service-detail-text h3 {
    font-size: 32px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.service-detail-text p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-detail-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-detail-text ul li {
    font-size: 15px;
    color: #555555;
    margin-bottom: 8px;
}

.service-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: #b89968;
    margin: 25px 0;
}

.service-detail-image {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.faq-section {
    padding: 80px 0;
    background-color: #f8f5f0;
}

.faq-section h3 {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    color: #2c2c2c;
    margin-bottom: 60px;
}

.faq-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
}

.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-split {
    display: flex;
    gap: 60px;
}

.contact-info-block,
.contact-image-block {
    flex: 1;
}

.contact-info-block h3 {
    font-size: 32px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
}

.contact-note {
    font-size: 14px;
    color: #888888;
    font-style: italic;
    margin-top: 10px;
}

.contact-image-block {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.location-section {
    padding: 80px 0;
    background-color: #f8f5f0;
}

.location-section h3 {
    font-size: 32px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.location-section p {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-section {
    padding: 120px 0;
    background-color: #f8f5f0;
    text-align: center;
}

.thanks-content h2 {
    font-size: 42px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 17px;
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-date {
    font-size: 14px;
    color: #888888;
    margin-bottom: 30px;
}

.legal-page h2 {
    font-size: 38px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.legal-page h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-page p {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 15px;
    color: #555555;
    margin-bottom: 8px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .hero-split {
        flex-direction: column;
    }

    .split-left {
        padding: 40px 20px;
    }

    .split-right {
        min-height: 400px;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

    .service-card {
        width: calc(50% - 15px);
    }

    .form-split,
    .contact-split,
    .service-detail-split {
        flex-direction: column;
    }

    .service-detail-item.reverse .service-detail-split {
        flex-direction: column;
    }

    .nav-main {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 32px;
    }

    .section-heading,
    .cta-final h3,
    .cta-section h3 {
        font-size: 28px;
    }

    .service-card {
        width: 100%;
    }

    .testimonials-grid,
    .values-grid,
    .faq-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-content p {
        margin-right: 0;
    }
}