* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2C2C2C;
    color: #FFFFFF;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.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;
    gap: 20px;
}

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

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

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

.btn-accept {
    background-color: #C9A961;
    color: #FFFFFF;
}

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

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

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

.header-split {
    background-color: #FFFFFF;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left,
.header-right {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand {
    font-size: 28px;
    font-weight: 700;
    color: #2C2C2C;
    letter-spacing: -0.5px;
}

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

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

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

.ad-label {
    font-size: 11px;
    color: #666;
    background-color: #F5F5F5;
    padding: 5px 10px;
    border-radius: 3px;
    margin-left: 20px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #FFFFFF;
}

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

.hero-left {
    padding: 60px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2C2C2C;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-image,
.hero-right-image,
.intro-right-image,
.values-right-image,
.hero-image-right {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img,
.hero-right-image img,
.intro-right-image img,
.values-right-image img,
.hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #C9A961;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #B89851;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 15px 35px;
    background-color: transparent;
    color: #2C2C2C;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    border: 2px solid #2C2C2C;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2C2C2C;
    color: #FFFFFF;
}

.intro-split {
    display: flex;
    background-color: #F8F8F8;
    min-height: 500px;
}

.intro-left-content,
.intro-right-image,
.philosophy-left-content,
.philosophy-right-image {
    flex: 1;
}

.intro-left-content,
.philosophy-left-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-left-content h2,
.philosophy-left-content h2,
.values-left-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2C2C2C;
}

.intro-left-content p,
.philosophy-left-content p,
.values-left-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.section-header-center {
    text-align: center;
    padding: 80px 40px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.section-header-center h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2C2C2C;
}

.section-header-center p {
    font-size: 18px;
    color: #555;
}

.services-preview {
    background-color: #FFFFFF;
    padding: 60px 0 100px;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2C2C2C;
}

.service-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    flex: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #C9A961;
    margin-bottom: 20px;
}

.btn-select {
    padding: 12px 25px;
    background-color: #2C2C2C;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #1A1A1A;
    transform: translateY(-2px);
}

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

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.form-left h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.form-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2C2C2C;
    font-size: 14px;
}

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

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

.btn-submit {
    padding: 15px 40px;
    background-color: #C9A961;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

.values-split {
    display: flex;
    background-color: #FFFFFF;
    min-height: 500px;
}

.values-left-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-split {
    display: flex;
    background-color: #F8F8F8;
    min-height: 500px;
}

.link-inline {
    color: #C9A961;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: #B89851;
    text-decoration: underline;
}

.disclaimer-section {
    background-color: #FFF9F0;
    padding: 40px 0;
    border-top: 1px solid #F0E5D0;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    text-align: center;
    font-style: italic;
}

.footer-split {
    background-color: #2C2C2C;
    color: #FFFFFF;
    padding-top: 60px;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #C9A961;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    line-height: 1.8;
    color: #B5B5B5;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-section a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding: 25px 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.page-hero-split,
.page-hero-centered {
    background-color: #F8F8F8;
    padding: 100px 40px;
}

.page-hero-split {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.hero-text-left {
    flex: 1;
}

.hero-text-left h1,
.hero-content-center h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.hero-text-left p,
.hero-content-center p {
    font-size: 20px;
    color: #555;
}

.hero-content-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.story-section {
    padding: 80px 40px;
    background-color: #FFFFFF;
}

.story-content-wide {
    max-width: 900px;
    margin: 0 auto;
}

.story-content-wide h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2C2C2C;
}

.story-content-wide p {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;
}

.team-section {
    background-color: #F8F8F8;
    padding: 80px 40px;
}

.team-content-center {
    max-width: 900px;
    margin: 0 auto;
}

.team-content-center p {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background-color: #FFFFFF;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #FAFAFA;
    border-left: 4px solid #C9A961;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2C2C2C;
}

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

.cta-section-centered {
    text-align: center;
    padding: 100px 40px;
    background-color: #F8F8F8;
}

.cta-section-centered h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.cta-section-centered p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
}

.services-detailed {
    padding: 40px 0;
    background-color: #FAFAFA;
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 60px;
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.service-detail-image {
    flex: 1;
    min-height: 400px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #C9A961;
    margin-bottom: 25px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #C9A961;
    font-weight: 700;
}

.contact-section-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    gap: 60px;
}

.contact-info-left {
    flex: 1;
}

.contact-info-left h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2C2C2C;
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2C2C2C;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.contact-map-right {
    flex: 1;
    background-color: #F5F5F5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.map-placeholder {
    padding: 40px;
    text-align: center;
}

.map-placeholder p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.additional-info {
    background-color: #F8F8F8;
    padding: 60px 40px;
}

.info-centered {
    max-width: 900px;
    margin: 0 auto;
}

.info-centered h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2C2C2C;
}

.info-centered p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.thanks-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
    background-color: #F8F8F8;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #FFFFFF;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    font-size: 80px;
    color: #C9A961;
    margin-bottom: 25px;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

.service-confirmation {
    margin: 25px 0;
}

.selected-service-display {
    font-size: 16px;
    color: #C9A961;
    font-weight: 600;
    background-color: #FFF9F0;
    padding: 15px;
    border-radius: 4px;
}

.thanks-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

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

.legal-page {
    background-color: #FAFAFA;
    padding: 80px 40px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2C2C2C;
}

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

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2C2C2C;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 10px;
}

.legal-content a {
    color: #C9A961;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .hero-split,
    .intro-split,
    .values-split,
    .philosophy-split,
    .page-hero-split,
    .form-container-split,
    .service-detail-split,
    .contact-section-split {
        flex-direction: column;
    }

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

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

    .hero-text h1,
    .hero-text-left h1,
    .hero-content-center h1 {
        font-size: 38px;
    }

    .section-header-center h2,
    .thanks-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .header-left,
    .header-right {
        padding: 15px 20px;
    }

    .main-nav {
        gap: 15px;
    }

    .hero-left,
    .intro-left-content,
    .values-left-content,
    .philosophy-left-content,
    .service-detail-content {
        padding: 40px 30px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .section-header-center {
        padding: 60px 20px 30px;
    }

    .service-card {
        width: 100%;
        min-width: 100%;
    }

    .services-grid-split {
        padding: 0 20px;
    }

    .form-container-split {
        padding: 0 20px;
        gap: 40px;
    }

    .footer-main {
        padding: 0 20px 30px;
    }

    .values-grid {
        padding: 60px 20px;
    }

    .legal-content {
        padding: 40px 30px;
    }

    .thanks-content {
        padding: 40px 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .brand {
        font-size: 22px;
    }

    .main-nav {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .hero-text h1,
    .hero-text-left h1,
    .hero-content-center h1 {
        font-size: 28px;
    }

    .section-header-center h2 {
        font-size: 28px;
    }

    .thanks-icon {
        font-size: 60px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions .cta-primary,
    .thanks-actions .cta-secondary {
        width: 100%;
    }
}