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

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.magazine-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #fff;
    border-bottom: 2px solid #e0e0e0;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-magazine {
    display: flex;
    min-height: 500px;
    background-color: #fff;
    padding: 60px 5%;
    gap: 40px;
}

.hero-text-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-lead {
    font-size: 20px;
    color: #555;
    line-height: 1.7;
}

.hero-image-column {
    flex: 1;
    background-color: #f5f5f5;
}

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

.intro-section {
    padding: 80px 5%;
    background-color: #f9f9f9;
}

.intro-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.intro-narrow h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.intro-narrow p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.services-preview {
    padding: 80px 5%;
    background-color: #fff;
}

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

.service-card-large {
    flex: 2;
    min-width: 350px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 30px;
}

.service-card-large img,
.service-card-small img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
    background-color: #f0f0f0;
}

.service-card-large h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-card-large p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.price-tag {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #8b6f47;
    margin-bottom: 15px;
}

.cta-link {
    display: inline-block;
    padding: 12px 25px;
    background-color: #2c2c2c;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.service-card-small {
    flex: 1;
    min-width: 250px;
    background-color: #f9f9f9;
    padding: 25px;
    border: 1px solid #e0e0e0;
}

.service-card-small h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.service-card-small p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

.philosophy-split {
    display: flex;
    gap: 0;
    background-color: #fff;
}

.philosophy-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

.philosophy-text {
    flex: 1;
    padding: 80px 60px;
}

.philosophy-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.philosophy-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

.testimonial-magazine {
    padding: 80px 10%;
    background-color: #8b6f47;
    text-align: center;
}

.testimonial-magazine blockquote {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-magazine p {
    font-size: 24px;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-magazine cite {
    font-size: 16px;
    color: #f0f0f0;
    font-style: normal;
}

.extended-services {
    padding: 80px 5%;
    background-color: #fff;
}

.extended-services h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c2c2c;
}

.services-columns {
    display: flex;
    gap: 40px;
}

.service-column {
    flex: 1;
    padding: 30px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
}

.service-column h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.service-column img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    background-color: #f0f0f0;
}

.service-column p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.price-highlight {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #8b6f47;
}

.form-section {
    padding: 80px 5%;
    background-color: #f9f9f9;
}

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

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

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

.contact-form {
    background-color: #fff;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 15px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    padding: 15px 40px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 40px 5%;
    background-color: #fff;
}

.disclaimer {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #666;
    text-align: center;
    line-height: 1.6;
}

.footer-magazine {
    background-color: #2c2c2c;
    color: #fff;
    padding: 60px 5% 20px;
}

.footer-columns {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p,
.footer-col li {
    font-size: 14px;
    color: #ccc;
    line-height: 1.8;
}

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

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

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

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

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

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

.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: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.cookie-btn.reject {
    background-color: #555;
    color: #fff;
}

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

.page-header-magazine {
    padding: 80px 5%;
    background-color: #fff;
    border-bottom: 2px solid #e0e0e0;
}

.page-header-magazine h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.page-lead {
    font-size: 20px;
    color: #555;
    max-width: 800px;
}

.about-page,
.services-page,
.contact-page,
.legal-page {
    background-color: #fff;
}

.about-story {
    display: flex;
    padding: 60px 5%;
    gap: 40px;
    background-color: #f9f9f9;
}

.story-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

.story-text {
    flex: 1;
    padding: 20px;
}

.story-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

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

.about-approach {
    padding: 80px 5%;
    background-color: #fff;
}

.about-approach h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c2c2c;
}

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

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

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.approach-item p {
    font-size: 16px;
    color: #555;
}

.team-section {
    padding: 80px 5%;
    background-color: #f9f9f9;
}

.team-section img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 40px;
    background-color: #f0f0f0;
}

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

.team-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.team-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

.values-section {
    padding: 80px 5%;
    background-color: #fff;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c2c2c;
}

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

.value-item {
    flex: 1;
    padding: 30px;
    background-color: #f9f9f9;
}

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

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

.cta-section-about,
.cta-section-services {
    padding: 80px 5%;
    background-color: #8b6f47;
    text-align: center;
}

.cta-section-about h2,
.cta-section-services h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
}

.cta-section-about p,
.cta-section-services p {
    font-size: 18px;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #fff;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: #2c2c2c;
    color: #fff;
}

.service-detail {
    padding: 60px 5%;
    background-color: #fff;
}

.service-detail.alt {
    background-color: #f9f9f9;
}

.service-detail-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.service-detail-content img {
    flex: 1;
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: #f0f0f0;
}

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

.service-detail-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

.service-detail-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

.service-detail-text ul {
    list-style: none;
    padding-left: 0;
}

.service-detail-text li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-detail-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: 700;
}

.process-section {
    padding: 80px 5%;
    background-color: #f9f9f9;
}

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

.process-steps {
    display: flex;
    gap: 30px;
}

.process-step {
    flex: 1;
    padding: 30px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.process-step p {
    font-size: 16px;
    color: #555;
}

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

.contact-content {
    display: flex;
    padding: 60px 5%;
    gap: 50px;
}

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

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

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

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

.contact-detail .note {
    font-size: 14px;
    color: #888;
    margin-top: 8px;
}

.contact-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

.location-section,
.faq-section,
.visit-info {
    padding: 60px 5%;
    background-color: #f9f9f9;
}

.location-section h2,
.faq-section h2,
.visit-info h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.location-section p,
.visit-info p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

.service-area {
    margin-top: 30px;
}

.service-area h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-area ul {
    list-style: none;
    padding-left: 0;
}

.service-area li {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.service-area li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: 700;
}

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

.faq-item {
    flex: 1;
    min-width: 280px;
    padding: 25px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

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

.faq-item p {
    font-size: 15px;
    color: #555;
}

.legal-page {
    padding-bottom: 60px;
}

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

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

.legal-content h3,
.legal-content h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

.legal-content a {
    color: #8b6f47;
    text-decoration: underline;
}

.last-updated {
    margin-top: 40px;
    font-style: italic;
    color: #888;
}

.thanks-page {
    display: flex;
    min-height: 500px;
    padding: 80px 5%;
    gap: 50px;
    background-color: #fff;
}

.thanks-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.thanks-info {
    margin-bottom: 40px;
}

.thanks-info p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #444;
}

.thanks-actions {
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #2c2c2c;
    color: #fff;
}

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

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

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

.thanks-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

@media (max-width: 768px) {
    .hero-magazine,
    .philosophy-split,
    .about-story,
    .contact-content,
    .thanks-page {
        flex-direction: column;
    }

    .service-grid-magazine,
    .services-columns,
    .footer-columns,
    .approach-grid,
    .values-columns,
    .process-steps {
        flex-direction: column;
    }

    .hero-text-column h1,
    .page-header-magazine h1 {
        font-size: 32px;
    }

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

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .service-detail-content {
        flex-direction: column;
    }

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