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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2C5F2D;
    --accent-color: #8B4513;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --gray: #666666;
    --light-gray: #e0e0e0;
    --border-color: #d0d0d0;
    --text-color: #333333;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

.ad-disclosure {
    background-color: var(--light-bg);
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: var(--gray);
    border-bottom: 1px solid var(--border-color);
}

.header-magazine {
    background-color: var(--white);
    border-bottom: 2px solid var(--primary-color);
}

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

.brand-title h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.brand-title .tagline {
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
}

.main-nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    font-family: Arial, sans-serif;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

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

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: var(--light-gray);
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
    color: var(--white);
    padding: 50px 40px;
}

.hero-text-overlay h2 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 900px;
}

.hero-text-overlay p {
    font-size: 20px;
    max-width: 700px;
    line-height: 1.6;
}

.multi-column-intro {
    display: flex;
    gap: 50px;
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.column-left {
    flex: 1.2;
    min-width: 300px;
}

.column-left h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.3;
}

.column-left p {
    font-size: 17px;
    margin-bottom: 20px;
}

.column-right {
    flex: 1;
    min-width: 300px;
}

.image-card {
    background-color: var(--light-bg);
    padding: 15px;
}

.image-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 15px;
}

.image-card .caption {
    font-size: 14px;
    font-style: italic;
    color: var(--gray);
}

.asymmetric-content {
    display: flex;
    gap: 40px;
    padding: 50px 40px;
    background-color: var(--light-bg);
    margin: 60px 0;
    flex-wrap: wrap;
}

.content-block-wide {
    flex: 2;
    min-width: 300px;
}

.content-block-wide h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.content-block-wide p {
    font-size: 17px;
    line-height: 1.8;
}

.sidebar-quote {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: var(--white);
    border-left: 4px solid var(--accent-color);
}

.sidebar-quote blockquote {
    font-size: 19px;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-color);
}

.image-grid-magazine {
    display: flex;
    gap: 20px;
    padding: 0 40px;
    margin: 60px auto;
    max-width: 1200px;
    flex-wrap: wrap;
}

.grid-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--light-gray);
}

.grid-item.large {
    flex: 1.5;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-narrow {
    max-width: 750px;
    margin: 60px auto;
    padding: 0 40px;
}

.content-narrow h3 {
    font-size: 30px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.services-preview {
    padding: 70px 40px;
    background-color: var(--light-bg);
    margin: 60px 0;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.services-intro h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-intro p {
    font-size: 18px;
    color: var(--gray);
}

.services-cards-inline {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card-compact {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: var(--white);
    padding: 35px;
    border: 1px solid var(--border-color);
}

.service-card-compact h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-family: Arial, sans-serif;
}

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

.price-tag {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: Arial, sans-serif;
}

.cta-link {
    display: block;
    text-align: center;
    font-size: 18px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-family: Arial, sans-serif;
    transition: color 0.3s;
}

.cta-link:hover {
    color: var(--primary-color);
}

.form-section-embedded {
    padding: 70px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    margin: 60px 0;
}

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

.form-wrapper-magazine h3 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.form-wrapper-magazine p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 2px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--text-color);
    font-weight: 600;
    font-family: Arial, sans-serif;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 1px solid var(--border-color);
    font-family: Arial, sans-serif;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 200px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 17px;
    font-weight: 600;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: Arial, sans-serif;
}

.btn-submit:hover {
    background-color: #1d3f1e;
}

.disclaimer-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-color);
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray);
}

.footer-magazine {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 40px 30px;
}

.footer-columns {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

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

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

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

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--light-gray);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 25px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
    font-family: Arial, sans-serif;
}

.btn-accept {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.page-hero-compact {
    padding: 70px 40px 50px;
    text-align: center;
    background-color: var(--light-bg);
}

.page-hero-compact h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.lead-text {
    font-size: 20px;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
}

.timeline-narrative {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 40px;
}

.timeline-block {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.timeline-block.reverse {
    flex-direction: row-reverse;
}

.timeline-image {
    flex: 1;
    min-width: 300px;
    background-color: var(--light-gray);
}

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

.timeline-content {
    flex: 1;
    min-width: 300px;
}

.timeline-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.philosophy-section {
    padding: 70px 40px;
    background-color: var(--light-bg);
}

.philosophy-section h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.principles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.principle-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background-color: var(--white);
    padding: 30px;
    border-left: 3px solid var(--secondary-color);
}

.principle-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-family: Arial, sans-serif;
}

.principle-card p {
    font-size: 15px;
    line-height: 1.6;
}

.cta-embedded {
    padding: 60px 40px;
}

.cta-content-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background-color: var(--secondary-color);
    color: var(--white);
}

.cta-content-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

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

.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    font-size: 17px;
    font-weight: 600;
    background-color: var(--white);
    color: var(--secondary-color);
    text-decoration: none;
    transition: opacity 0.3s;
    font-family: Arial, sans-serif;
}

.btn-cta:hover {
    opacity: 0.9;
}

.services-detailed {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}

.service-item-magazine {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.service-item-magazine.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1.3;
    min-width: 300px;
}

.service-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

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

.service-features li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    font-size: 15px;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.pricing-box {
    margin-top: 30px;
    padding: 25px;
    background-color: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
}

.pricing-box .price {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-family: Arial, sans-serif;
}

.pricing-box .price-info {
    font-size: 14px;
    color: var(--gray);
}

.service-image {
    flex: 1;
    min-width: 300px;
    background-color: var(--light-gray);
}

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

.contact-layout {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-info-block h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.contact-address {
    font-size: 16px;
    line-height: 1.8;
    font-style: normal;
    margin-bottom: 35px;
}

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

.contact-detail h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-family: Arial, sans-serif;
}

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

.email-display {
    color: var(--text-color);
    font-weight: 600;
}

.contact-detail .note {
    font-size: 14px;
    color: var(--gray);
    margin-top: 10px;
}

.contact-visual {
    flex: 1;
    min-width: 300px;
}

.contact-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 15px;
}

.image-caption {
    font-size: 14px;
    font-style: italic;
    color: var(--gray);
}

.approach-section {
    padding: 60px 40px;
    background-color: var(--light-bg);
}

.approach-section h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.approach-steps {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 230px;
    background-color: var(--white);
    padding: 30px;
    text-align: center;
}

.step-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
}

.step-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-family: Arial, sans-serif;
}

.step-card p {
    font-size: 15px;
    line-height: 1.6;
}

.location-info {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

.location-info h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.transport-info {
    list-style: none;
    margin: 25px 0;
}

.transport-info li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    font-size: 15px;
}

.transport-info li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 20px;
}

.parking-note {
    font-size: 14px;
    color: var(--gray);
    margin-top: 25px;
}

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

.success-icon {
    margin-bottom: 30px;
}

.thanks-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-confirmation {
    margin: 30px 0;
    padding: 25px;
    background-color: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
}

.service-confirmation.hidden {
    display: none;
}

.service-confirmation p {
    font-size: 15px;
    margin-bottom: 10px;
}

.selected-service {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.next-steps-intro {
    font-size: 20px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.next-steps-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
}

.next-steps-list li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.next-steps-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
}

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

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s;
    font-family: Arial, sans-serif;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.8;
}

.additional-info {
    margin-top: 60px;
    padding: 40px;
    background-color: var(--light-bg);
}

.additional-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.additional-info p {
    margin-bottom: 20px;
    font-size: 16px;
}

.link-inline {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

.link-inline:hover {
    color: var(--primary-color);
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-page .subtitle,
.legal-page .last-updated {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: var(--primary-color);
}

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

.legal-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-section ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

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

.cookie-table thead {
    background-color: var(--light-bg);
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
    font-size: 15px;
}

.cookie-table th {
    font-weight: 600;
    font-family: Arial, sans-serif;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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

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

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

    .multi-column-intro,
    .asymmetric-content,
    .timeline-block,
    .service-item-magazine,
    .contact-layout {
        flex-direction: column;
    }

    .timeline-block.reverse {
        flex-direction: column;
    }

    .page-hero-compact h2 {
        font-size: 32px;
    }

    .services-intro h3 {
        font-size: 28px;
    }

    .cta-content-box h3 {
        font-size: 26px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-actions {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}
