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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2416;
    background-color: #faf8f5;
}

.ad-disclosure {
    background-color: #f4f1ed;
    color: #6b5d4f;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid #e0d5c7;
}

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e8e3dc;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2416;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: #5a4d3f;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #8b7355;
}

.hero-magazine {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-main {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c2416;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #5a4d3f;
    max-width: 700px;
}

.intro-columns {
    padding: 80px 40px;
    background-color: #f5f2ed;
}

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

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

.three-col-layout {
    display: flex;
    gap: 50px;
}

.col-left, .col-middle, .col-right {
    flex: 1;
}

.col-left h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 400;
    color: #2c2416;
}

.col-left p, .col-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a4d3f;
}

.highlight-box {
    background-color: #8b7355;
    color: #fff;
    padding: 35px;
    border-radius: 2px;
}

.highlight-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #fff;
}

.services-showcase {
    padding: 100px 40px;
}

.section-header-offset {
    margin-bottom: 60px;
}

.section-header-offset h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: #2c2416;
}

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

.service-card-large {
    flex: 1 1 100%;
    display: flex;
    background-color: #fff;
    border: 1px solid #e8e3dc;
}

.service-card-large .service-image {
    width: 50%;
    height: 450px;
    overflow: hidden;
}

.service-card-large .service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card-large .service-content {
    width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-medium {
    flex: 1 1 calc(50% - 15px);
    background-color: #fff;
    border: 1px solid #e8e3dc;
}

.service-card-medium .service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.service-card-medium .service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card-medium .service-content {
    padding: 35px;
}

.service-card-wide {
    flex: 1 1 100%;
    background-color: #fff;
    border: 1px solid #e8e3dc;
}

.service-split {
    display: flex;
}

.service-split .service-image {
    width: 60%;
    height: 350px;
    overflow: hidden;
}

.service-split .service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-split .service-content {
    width: 40%;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-small {
    flex: 1 1 calc(50% - 15px);
    background-color: #f5f2ed;
    border: 1px solid #e8e3dc;
}

.service-card-small .service-content {
    padding: 40px;
}

.service-content h3 {
    font-size: 1.7rem;
    margin-bottom: 18px;
    font-weight: 400;
    color: #2c2416;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a4d3f;
    margin-bottom: 25px;
}

.price-tag {
    font-size: 1.8rem;
    color: #8b7355;
    font-weight: 600;
    margin: 20px 0;
}

.select-service {
    background-color: #2c2416;
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

.select-service:hover {
    background-color: #5a4d3f;
}

.process-section {
    padding: 100px 40px;
    background-color: #fff;
}

.process-section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 400;
    color: #2c2416;
}

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

.process-step {
    flex: 1;
}

.step-number {
    font-size: 3rem;
    color: #e0d5c7;
    font-weight: 600;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 400;
    color: #2c2416;
}

.process-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a4d3f;
}

.testimonial-inline {
    padding: 100px 40px;
    background-color: #f5f2ed;
}

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

.testimonial-image {
    width: 45%;
    height: 400px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.testimonial-content {
    width: 55%;
}

blockquote {
    font-size: 1.4rem;
    line-height: 1.8;
    font-style: italic;
    color: #2c2416;
    position: relative;
}

blockquote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    left: -40px;
    top: -20px;
    color: #8b7355;
    opacity: 0.3;
}

cite {
    display: block;
    margin-top: 25px;
    font-size: 1.1rem;
    font-style: normal;
    color: #8b7355;
}

.cta-section {
    padding: 100px 40px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 400;
    color: #2c2416;
}

.cta-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5a4d3f;
    margin-bottom: 40px;
}

.cta-button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 16px 40px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    font-family: inherit;
}

.btn-primary {
    background-color: #8b7355;
    color: #fff;
}

.btn-primary:hover {
    background-color: #6b5d4f;
}

.btn-secondary {
    background-color: transparent;
    color: #2c2416;
    border: 2px solid #2c2416;
}

.btn-secondary:hover {
    background-color: #2c2416;
    color: #fff;
}

.form-section {
    padding: 100px 40px;
    background-color: #fff;
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 400;
    color: #2c2416;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #5a4d3f;
    margin-bottom: 50px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #2c2416;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #e0d5c7;
    font-size: 1rem;
    font-family: inherit;
    background-color: #faf8f5;
}

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background-color: #2c2416;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

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

.main-footer {
    background-color: #2c2416;
    color: #d4c5b0;
    padding: 60px 40px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 400;
}

.footer-col p {
    font-size: 1rem;
    line-height: 1.7;
    color: #d4c5b0;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #d4c5b0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #5a4d3f;
    text-align: center;
    font-size: 0.9rem;
    color: #a89680;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2416;
    color: #fff;
    padding: 25px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
}

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

.btn-cookie-accept, .btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.btn-cookie-accept {
    background-color: #8b7355;
    color: #fff;
}

.btn-cookie-accept:hover {
    background-color: #6b5d4f;
}

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

.btn-cookie-reject:hover {
    background-color: #fff;
    color: #2c2416;
}

@media (max-width: 1024px) {
    .three-col-layout {
        flex-direction: column;
        gap: 30px;
    }

    .service-card-large {
        flex-direction: column;
    }

    .service-card-large .service-image,
    .service-card-large .service-content {
        width: 100%;
    }

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

    .service-split .service-image,
    .service-split .service-content {
        width: 100%;
    }

    .process-grid {
        flex-direction: column;
    }

    .testimonial-layout {
        flex-direction: column;
    }

    .testimonial-image,
    .testimonial-content {
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
    }
}

.page-header {
    padding: 80px 40px 60px;
    text-align: center;
    background-color: #f5f2ed;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 400;
    color: #2c2416;
}

.header-subtitle {
    font-size: 1.3rem;
    color: #5a4d3f;
}

.about-intro {
    padding: 80px 40px;
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image-large {
    width: 50%;
    height: 500px;
    overflow: hidden;
}

.about-image-large img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-content {
    width: 50%;
}

.about-content h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    font-weight: 400;
    color: #2c2416;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a4d3f;
    margin-bottom: 20px;
}

.philosophy-section {
    padding: 100px 40px;
    background-color: #fff;
}

.philosophy-section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 400;
    color: #2c2416;
}

.philosophy-blocks {
    display: flex;
    gap: 50px;
}

.philosophy-item {
    flex: 1;
}

.philosophy-item h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    font-weight: 400;
    color: #2c2416;
}

.philosophy-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a4d3f;
}

.values-section {
    padding: 100px 40px;
    background-color: #f5f2ed;
}

.values-split {
    display: flex;
    gap: 80px;
    align-items: center;
}

.values-content {
    width: 55%;
}

.values-content h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    font-weight: 400;
    color: #2c2416;
}

.values-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a4d3f;
    margin-bottom: 20px;
}

.values-image {
    width: 45%;
    height: 450px;
    overflow: hidden;
}

.values-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.team-section {
    padding: 100px 40px;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 400;
    color: #2c2416;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5a4d3f;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 600;
    color: #8b7355;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #5a4d3f;
}

.sustainability-section {
    padding: 100px 40px;
    background-color: #fff;
}

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

.sustainability-text {
    width: 60%;
}

.sustainability-text h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    font-weight: 400;
    color: #2c2416;
}

.sustainability-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a4d3f;
    margin-bottom: 20px;
}

.sustainability-image {
    width: 40%;
    height: 400px;
    overflow: hidden;
}

.sustainability-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-page-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item-full {
    display: flex;
    background-color: #fff;
    border: 1px solid #e8e3dc;
}

.service-item-full:nth-child(even) {
    flex-direction: row-reverse;
}

.service-item-full .service-image {
    width: 45%;
    height: 400px;
    overflow: hidden;
}

.service-item-full .service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-item-full .service-details {
    width: 55%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-item-full h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 400;
    color: #2c2416;
}

.service-item-full p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a4d3f;
    margin-bottom: 25px;
}

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

.service-features li {
    font-size: 1rem;
    color: #5a4d3f;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8b7355;
    font-size: 1.5rem;
}

.contact-page-content {
    padding: 80px 40px;
}

.contact-grid {
    display: flex;
    gap: 80px;
}

.contact-info {
    width: 40%;
}

.contact-info h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    font-weight: 400;
    color: #2c2416;
}

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

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 400;
    color: #2c2416;
}

.info-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a4d3f;
}

.contact-map {
    width: 60%;
    height: 500px;
    overflow: hidden;
    background-color: #e0d5c7;
}

.contact-map img {
    width: 100%;
    height: 100%;
    display: block;
}

.thanks-content {
    padding: 120px 40px;
    text-align: center;
}

.thanks-box {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 80px 60px;
    border: 1px solid #e8e3dc;
}

.thanks-box h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 400;
    color: #2c2416;
}

.thanks-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5a4d3f;
    margin-bottom: 20px;
}

.service-confirmation {
    background-color: #f5f2ed;
    padding: 30px;
    margin: 40px 0;
    font-size: 1.1rem;
    color: #2c2416;
}

.legal-page {
    padding: 80px 40px;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 400;
    color: #2c2416;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #2c2416;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 400;
    color: #2c2416;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a4d3f;
    margin-bottom: 20px;
}

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

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a4d3f;
    margin-bottom: 10px;
}

.update-date {
    font-size: 0.95rem;
    color: #8b7355;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .three-col-layout {
        flex-direction: column;
        gap: 30px;
    }

    .service-card-large {
        flex-direction: column;
    }

    .service-card-large .service-image,
    .service-card-large .service-content {
        width: 100%;
    }

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

    .service-split .service-image,
    .service-split .service-content {
        width: 100%;
    }

    .process-grid {
        flex-direction: column;
    }

    .testimonial-layout {
        flex-direction: column;
    }

    .testimonial-image,
    .testimonial-content {
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .about-grid {
        flex-direction: column;
    }

    .about-image-large,
    .about-content {
        width: 100%;
    }

    .philosophy-blocks {
        flex-direction: column;
        gap: 40px;
    }

    .values-split {
        flex-direction: column;
    }

    .values-content,
    .values-image {
        width: 100%;
    }

    .sustainability-layout {
        flex-direction: column;
    }

    .sustainability-text,
    .sustainability-image {
        width: 100%;
    }

    .service-item-full,
    .service-item-full:nth-child(even) {
        flex-direction: column;
    }

    .service-item-full .service-image,
    .service-item-full .service-details {
        width: 100%;
    }

    .contact-grid {
        flex-direction: column;
    }

    .contact-info,
    .contact-map {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        gap: 20px;
    }

    .cta-button-group {
        flex-direction: column;
    }

    .service-card-medium,
    .service-card-small {
        flex: 1 1 100%;
    }

    .page-header h1 {
        font-size: 2.3rem;
    }

    .team-stats {
        flex-direction: column;
        gap: 40px;
    }
}