* {
    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: #f0f0f0;
    color: #666;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    border-bottom: 1px solid #ddd;
}

.magazine-nav {
    background-color: #fff;
    border-bottom: 2px solid #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: lowercase;
}

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

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.hero-editorial {
    position: relative;
    height: 600px;
    background-color: #1a1a1a;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content {
    max-width: 800px;
    text-align: center;
    color: #fff;
    padding: 40px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: normal;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
}

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

.intro-section {
    margin-bottom: 80px;
}

.three-column-intro {
    display: flex;
    gap: 50px;
}

.intro-col {
    flex: 1;
}

.intro-col h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: normal;
}

.intro-col p {
    font-size: 17px;
    color: #444;
}

.highlight-box {
    background-color: #f5f5f0;
    padding: 30px;
    border-left: 4px solid #8b4513;
}

.highlight-box h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #8b4513;
    font-weight: normal;
}

.split-content {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.content-left {
    flex: 1;
    background-color: #e8e8e8;
}

.content-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.content-right {
    flex: 1;
}

.content-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: normal;
    line-height: 1.3;
}

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

.inline-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background-color: #8b4513;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s;
}

.inline-cta:hover {
    background-color: #6d3410;
}

.principle-cards {
    margin-bottom: 100px;
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: normal;
}

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

.principle-card {
    flex: 1 1 calc(50% - 20px);
    background-color: #fff;
    border: 1px solid #ddd;
    min-width: 300px;
}

.card-image-wrapper {
    width: 100%;
    height: 300px;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: normal;
}

.card-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.testimonial-editorial {
    background-color: #f9f9f9;
    padding: 80px 60px;
    margin-bottom: 100px;
    border-top: 3px solid #1a1a1a;
    border-bottom: 3px solid #1a1a1a;
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

blockquote {
    border-left: 5px solid #8b4513;
    padding-left: 30px;
    font-style: italic;
    font-size: 20px;
    line-height: 1.7;
}

blockquote footer {
    margin-top: 16px;
    font-style: normal;
    font-size: 15px;
    color: #666;
}

.services-overview {
    margin-bottom: 100px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: normal;
}

.services-header p {
    font-size: 18px;
    color: #666;
}

.services-magazine-layout {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.services-magazine-layout.reverse {
    flex-direction: row-reverse;
}

.service-major {
    flex: 2;
    background-color: #fff;
    border: 2px solid #1a1a1a;
    padding: 40px;
}

.service-major h3 {
    font-size: 28px;
    margin-bottom: 24px;
    font-weight: normal;
}

.service-detail p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail ul {
    list-style: none;
    margin: 24px 0;
}

.service-detail ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
}

.service-detail ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8b4513;
}

.service-minor {
    flex: 1;
    background-color: #f5f5f0;
    padding: 30px;
    border-left: 4px solid #8b4513;
}

.service-minor h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: normal;
}

.service-minor p {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.form-section {
    background-color: #fff;
    border: 2px solid #1a1a1a;
    padding: 60px;
    margin-bottom: 100px;
}

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

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

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: normal;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: bold;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ccc;
    font-size: 15px;
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #fafafa;
}

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

.submit-btn {
    padding: 16px 40px;
    background-color: #8b4513;
    color: #fff;
    border: none;
    font-size: 17px;
    font-family: 'Georgia', 'Times New Roman', serif;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.final-insight {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 60px;
    margin-bottom: 80px;
}

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

.insight-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    font-weight: normal;
}

.insight-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.site-footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 60px 40px 20px;
}

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

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.disclaimer {
    font-size: 12px;
    font-style: italic;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #444;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 24px;
    z-index: 2000;
    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: 14px;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

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

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

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

.about-header,
.services-intro,
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h1,
.services-intro h1,
.contact-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: normal;
}

.intro-text,
.services-description,
.contact-header p {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.about-story {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: flex-start;
}

.story-column {
    flex: 1;
}

.story-column h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: normal;
}

.story-column p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

.philosophy-section,
.values-section {
    margin-bottom: 100px;
}

.philosophy-section h2,
.values-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: normal;
}

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

.philosophy-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.philosophy-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #8b4513;
    font-weight: normal;
}

.philosophy-item p {
    font-size: 16px;
    line-height: 1.7;
}

.team-approach {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: normal;
}

.approach-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.approach-image {
    flex: 1;
    background-color: #e8e8e8;
}

.approach-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item {
    padding: 30px;
    background-color: #f9f9f9;
    border-left: 4px solid #8b4513;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: normal;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
}

.cta-about {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 60px;
    text-align: center;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: normal;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: #8b4513;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #6d3410;
}

.cta-btn.secondary {
    background-color: #444;
    margin-left: 16px;
}

.cta-btn.secondary:hover {
    background-color: #555;
}

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

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

.service-image-left,
.service-image-right {
    flex: 1;
    background-color: #e8e8e8;
}

.service-image-left img,
.service-image-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-content-right,
.service-content-left {
    flex: 1;
}

.service-content-right h2,
.service-content-left h2 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: normal;
}

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

.feature-list {
    list-style: none;
    margin: 24px 0;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: bold;
}

.service-cta {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 32px;
    background-color: #8b4513;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #6d3410;
}

.compact-services {
    margin-bottom: 80px;
}

.compact-services h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: normal;
}

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

.compact-service {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 280px;
    padding: 30px;
    background-color: #f9f9f9;
    border-top: 4px solid #8b4513;
}

.compact-service.featured-service {
    background-color: #f5f5f0;
    border-top: 4px solid #1a1a1a;
}

.compact-service h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: normal;
}

.compact-service h4 {
    font-size: 16px;
    margin: 20px 0 12px;
    font-weight: bold;
}

.compact-service p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.mini-list {
    list-style: none;
    margin: 16px 0;
}

.mini-list li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}

.mini-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b4513;
}

.compact-cta {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 24px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
}

.compact-cta:hover {
    background-color: #333;
}

.service-form-section {
    background-color: #fff;
    border: 2px solid #1a1a1a;
    padding: 60px;
    margin-bottom: 80px;
}

.contact-info-layout {
    display: flex;
    gap: 80px;
    margin-bottom: 80px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: normal;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #8b4513;
    font-weight: normal;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
}

.contact-notice {
    background-color: #f5f5f0;
    padding: 24px;
    border-left: 4px solid #8b4513;
    margin-top: 40px;
}

.contact-notice p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.contact-cta {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 60px;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: normal;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.thanks-section {
    max-width: 900px;
    margin: 80px auto;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    font-weight: normal;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: #666;
}

.selected-service {
    margin-bottom: 50px;
}

.service-confirmation {
    font-size: 18px;
    padding: 20px;
    background-color: #f5f5f0;
    border-left: 4px solid #8b4513;
}

.next-steps {
    text-align: left;
    margin-bottom: 60px;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: normal;
}

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

.steps-list li {
    counter-increment: step-counter;
    padding: 16px 0 16px 50px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

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

.thanks-cta {
    margin-top: 50px;
}

.thanks-cta p {
    font-size: 17px;
    margin-bottom: 24px;
}

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

.legal-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: normal;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: normal;
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 16px;
    font-weight: normal;
}

.legal-content h4 {
    font-size: 18px;
    margin: 24px 0 12px;
    font-weight: bold;
}

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

.legal-content ul,
.legal-content ol {
    margin: 16px 0 16px 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

.legal-content a:hover {
    color: #6d3410;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 15px;
}

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

.cookie-table th {
    background-color: #f5f5f0;
    font-weight: bold;
}

.cookie-table tr:nth-child(even) {
    background-color: #fafafa;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #fff;
        padding: 20px;
        border-bottom: 2px solid #1a1a1a;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

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

    .hero-content p {
        font-size: 16px;
    }

    .three-column-intro {
        flex-direction: column;
        gap: 30px;
    }

    .split-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .principle-card {
        flex: 1 1 100%;
    }

    .services-magazine-layout {
        flex-direction: column;
    }

    .services-magazine-layout.reverse {
        flex-direction: column;
    }

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

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

    .about-story,
    .team-approach {
        flex-direction: column;
    }

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

    .philosophy-item {
        flex: 1 1 100%;
    }

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

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

    .compact-service {
        flex: 1 1 100%;
    }

    .contact-info-layout {
        flex-direction: column;
        gap: 40px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn.secondary {
        margin-left: 0;
    }
}