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

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

.ad-disclosure {
    background-color: #f0ebe5;
    color: #6b5d54;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #d4cdc5;
}

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

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #8b6f47;
    text-decoration: none;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

.container-medium {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.hero-magazine {
    padding: 80px 0 100px;
    background-color: #fff;
}

.hero-content-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.hero-image-col {
    flex: 1;
}

.hero-image-col img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
}

.hero-text-col h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 600;
}

.hero-lead {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #5a5a5a;
}

.cta-primary {
    display: inline-block;
    background-color: #8b6f47;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #6f5838;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #8b6f47;
    padding: 16px 40px;
    text-decoration: none;
    border: 2px solid #8b6f47;
    border-radius: 3px;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #8b6f47;
    color: #fff;
}

.intro-editorial {
    padding: 90px 0;
    background-color: #f7f4f1;
}

.intro-editorial h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 600;
}

.intro-editorial p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.services-magazine {
    padding: 100px 0;
    background-color: #fff;
}

.section-title-offset {
    font-size: 42px;
    margin-bottom: 60px;
    margin-left: 40px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-grid-magazine {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.service-card-large {
    flex: 2;
    min-width: 400px;
    background-color: #fafafa;
    border: 1px solid #e5e5e5;
}

.service-card-medium {
    flex: 1;
    min-width: 300px;
    background-color: #fafafa;
    border: 1px solid #e5e5e5;
}

.service-card-large img,
.service-card-medium img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #5a5a5a;
}

.price-tag {
    font-size: 28px;
    color: #8b6f47;
    font-weight: bold;
    margin-bottom: 20px;
}

.select-service {
    background-color: #8b6f47;
    color: #fff;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 15px;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #6f5838;
}

.service-row-split {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card-horizontal {
    flex: 1;
    min-width: 450px;
    display: flex;
    gap: 25px;
    background-color: #fafafa;
    border: 1px solid #e5e5e5;
    padding: 25px;
}

.service-card-horizontal img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}

.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7f4f1 0%, #ebe6e0 100%);
}

.form-wrapper-magazine {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    margin-bottom: 45px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 17px;
    color: #5a5a5a;
}

.contact-form {
    background-color: #fff;
    padding: 45px;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.btn-submit {
    background-color: #8b6f47;
    color: #fff;
    border: none;
    padding: 16px 50px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s;
    width: 100%;
}

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

.trust-section {
    padding: 90px 0;
    background-color: #2c2c2c;
    color: #fff;
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #fff;
}

.testimonials-inline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonials-inline blockquote {
    border-left: 4px solid #8b6f47;
    padding-left: 30px;
    font-style: italic;
    font-size: 19px;
    line-height: 1.6;
}

.testimonials-inline cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-size: 15px;
    color: #b0b0b0;
}

.main-footer {
    background-color: #1a1a1a;
    color: #b0b0b0;
    padding: 60px 0 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 30px 0;
    border-top: 1px solid #333;
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #8b6f47;
    padding: 25px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    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;
    margin: 0;
    font-size: 15px;
}

.cookie-content a {
    color: #8b6f47;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 3px;
    transition: all 0.3s;
}

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

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

.btn-cookie-reject {
    background-color: #e5e5e5;
    color: #4a4a4a;
}

.btn-cookie-reject:hover {
    background-color: #d5d5d5;
}

.about-hero,
.services-hero,
.contact-hero {
    padding: 80px 0 60px;
    background-color: #f7f4f1;
    text-align: center;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-lead {
    font-size: 20px;
    color: #5a5a5a;
}

.about-story {
    padding: 90px 0;
    background-color: #fff;
}

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

.story-text {
    flex: 1.2;
}

.story-image {
    flex: 1;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.story-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
}

.values-section {
    padding: 90px 0;
    background-color: #f7f4f1;
}

.values-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1;
    padding: 30px;
    background-color: #fff;
    border-left: 4px solid #8b6f47;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    color: #5a5a5a;
}

.team-approach {
    padding: 90px 0;
    background-color: #fff;
}

.team-approach h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.team-approach p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.services-detailed {
    padding: 80px 0;
}

.service-detail {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

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

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

.service-detail-content {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.price-large {
    font-size: 32px;
    color: #8b6f47;
    font-weight: bold;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: #4a4a4a;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-size: 20px;
}

.btn-service {
    display: inline-block;
    background-color: #8b6f47;
    color: #fff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 15px;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #6f5838;
}

.services-cta {
    padding: 80px 0;
    background-color: #f7f4f1;
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #5a5a5a;
}

.contact-content {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-visual {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.6;
}

.contact-note {
    margin-top: 40px;
    padding: 25px;
    background-color: #f7f4f1;
    border-left: 4px solid #8b6f47;
}

.contact-note p {
    font-size: 15px;
    color: #4a4a4a;
}

.contact-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
}

.contact-directions {
    padding: 80px 0;
    background-color: #f7f4f1;
}

.contact-directions h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.contact-directions p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.thanks-page {
    min-height: 60vh;
}

.thanks-content {
    padding: 100px 0;
    background-color: #f7f4f1;
}

.thanks-message {
    text-align: center;
    padding: 60px 0;
}

.thanks-message h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-lead {
    font-size: 20px;
    margin-bottom: 30px;
    color: #5a5a5a;
}

.service-confirmation {
    margin: 30px 0;
    padding: 25px;
    background-color: #fff;
    border-radius: 4px;
    display: inline-block;
    font-size: 17px;
    color: #4a4a4a;
}

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

.btn-primary {
    display: inline-block;
    background-color: #8b6f47;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 16px;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #8b6f47;
    padding: 16px 40px;
    text-decoration: none;
    border: 2px solid #8b6f47;
    border-radius: 3px;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #8b6f47;
    color: #fff;
}

.next-steps {
    margin-top: 60px;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 20px 0;
    padding-left: 50px;
    position: relative;
    font-size: 17px;
    color: #4a4a4a;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 18px;
    background-color: #8b6f47;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.legal-page {
    background-color: #fff;
}

.legal-content {
    padding: 80px 0;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.legal-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #e5e5e5;
}

.cookie-table th {
    background-color: #f7f4f1;
    font-weight: 600;
    color: #1a1a1a;
}

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .service-grid-magazine {
        flex-direction: column;
    }

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

    .service-card-horizontal {
        flex-direction: column;
        min-width: auto;
    }

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

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

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

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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