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

:root {
    --primary-color: #2D5F3F;
    --secondary-color: #8B4513;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --accent-gold: #C4975F;
}

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-gold);
}

.ad-disclosure {
    background-color: var(--text-dark);
    color: var(--bg-white);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-family: 'Arial', sans-serif;
}

.magazine-nav {
    background-color: var(--bg-white);
    border-bottom: 2px solid var(--border-color);
    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;
}

.nav-brand {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 1px;
}

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

.nav-links a {
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero-magazine {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: var(--text-dark);
}

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

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

.hero-content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--bg-white);
    max-width: 800px;
    padding: 0 30px;
}

.hero-content-overlay h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.2;
}

.hero-content-overlay p {
    font-size: 20px;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.container-magazine {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

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

.intro-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.intro-main-column {
    flex: 2;
}

.intro-main-column h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 400;
}

.intro-main-column p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-medium);
}

.intro-side-column {
    flex: 1;
}

.highlight-box {
    background-color: var(--bg-white);
    padding: 35px;
    border-left: 4px solid var(--primary-color);
}

.highlight-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.highlight-box ul {
    list-style: none;
}

.highlight-box ul li {
    padding: 8px 0;
    color: var(--text-medium);
    font-family: 'Arial', sans-serif;
    font-size: 16px;
}

.highlight-box ul li:before {
    content: "→ ";
    color: var(--primary-color);
    margin-right: 8px;
}

.featured-services-grid {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.section-title-centered {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 400;
}

.section-title-left {
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 400;
}

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

.service-card-magazine {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background-color: var(--bg-light);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card-magazine:hover {
    transform: translateY(-5px);
}

.service-image-container {
    width: 100%;
    height: 250px;
    background-color: var(--border-color);
    overflow: hidden;
}

.service-image-container img {
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-content p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.price-tag {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.select-service-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: var(--secondary-color);
}

.why-choose-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.two-col-asymmetric {
    display: flex;
    gap: 70px;
    align-items: center;
}

.col-image-left {
    flex: 1.2;
}

.col-image-left img {
    width: 100%;
    border-radius: 2px;
}

.col-content-right {
    flex: 1;
}

.col-content-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 400;
}

.col-content-right p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.text-link-arrow {
    display: inline-block;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: var(--primary-color);
    margin-top: 15px;
    transition: transform 0.3s ease;
}

.text-link-arrow:after {
    content: " →";
}

.text-link-arrow:hover {
    transform: translateX(5px);
}

.form-section-magazine {
    padding: 90px 0;
    background-color: var(--bg-white);
}

.form-section-magazine h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 50px;
    font-family: 'Arial', sans-serif;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    background-color: var(--bg-white);
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}

.disclaimer-section {
    padding: 50px 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.disclaimer-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

.magazine-footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--bg-light);
    font-family: 'Arial', sans-serif;
}

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

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

.footer-col ul li a {
    color: var(--bg-light);
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--bg-light);
    font-family: 'Arial', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 25px 30px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 24px;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cookie-btn.accept:hover {
    background-color: var(--accent-gold);
}

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

.cookie-btn.reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-link {
    color: var(--accent-gold);
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    text-decoration: underline;
}

.page-header-magazine {
    background-color: var(--bg-light);
    padding: 80px 0 60px;
    border-bottom: 2px solid var(--border-color);
}

.page-header-magazine h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 400;
}

.header-intro {
    font-size: 19px;
    color: var(--text-medium);
    font-family: 'Arial', sans-serif;
}

.about-story {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.story-text-wide {
    flex: 1.5;
}

.story-text-wide h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 400;
}

.story-text-wide p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.story-image-side {
    flex: 1;
}

.expertise-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.expertise-grid-magazine {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.expertise-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 35px;
    background-color: var(--bg-white);
    border-left: 3px solid var(--primary-color);
}

.expertise-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.expertise-card p {
    font-size: 16px;
    color: var(--text-medium);
    font-family: 'Arial', sans-serif;
}

.methodology-detail {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.split-content-reverse {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.content-half {
    flex: 1;
}

.content-half h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 400;
}

.content-half p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.process-list {
    background-color: var(--bg-light);
    padding: 40px;
}

.process-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.process-number {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

.process-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.process-text p {
    font-size: 15px;
    color: var(--text-medium);
    font-family: 'Arial', sans-serif;
}

.cta-about {
    padding: 80px 0;
    background-color: var(--primary-color);
    text-align: center;
    color: var(--bg-white);
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--bg-white);
    font-weight: 400;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 35px;
    font-family: 'Arial', sans-serif;
}

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

.btn-primary,
.btn-secondary {
    padding: 16px 35px;
    font-size: 17px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--accent-gold);
    color: var(--bg-white);
}

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

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

.services-detailed {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 400;
}

.service-description {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 25px;
}

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

.service-features li {
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-medium);
    font-family: 'Arial', sans-serif;
}

.service-features li:before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

.service-pricing-row {
    display: flex;
    align-items: center;
    gap: 25px;
}

.service-price {
    font-size: 38px;
    color: var(--primary-color);
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 2px;
}

.contact-info-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.contact-layout {
    display: flex;
    gap: 70px;
}

.contact-main {
    flex: 1.5;
}

.contact-main h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 400;
}

.contact-main p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.contact-details-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 40px;
}

.contact-detail-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-detail-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    font-family: 'Arial', sans-serif;
}

.email-display {
    color: var(--text-medium);
    cursor: text;
}

.contact-note {
    background-color: var(--bg-light);
    padding: 25px;
    border-left: 3px solid var(--primary-color);
}

.contact-note p {
    font-size: 15px;
    color: var(--text-medium);
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.contact-sidebar {
    flex: 1;
}

.contact-image-container {
    margin-bottom: 30px;
}

.contact-cta-box {
    background-color: var(--primary-color);
    padding: 35px;
    color: var(--bg-white);
}

.contact-cta-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--bg-white);
}

.contact-cta-box p {
    font-size: 16px;
    margin-bottom: 25px;
    font-family: 'Arial', sans-serif;
}

.thanks-section {
    padding: 100px 0;
    background-color: var(--bg-white);
    min-height: 600px;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 30px;
    width: 80px;
    height: 80px;
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 400;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 40px;
    font-family: 'Arial', sans-serif;
}

.confirmation-details {
    background-color: var(--bg-light);
    padding: 30px;
    margin-bottom: 50px;
    border-left: 4px solid var(--primary-color);
    text-align: left;
}

.confirmation-details p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
}

.confirmation-details strong {
    color: var(--primary-color);
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 400;
}

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

.next-steps ul li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-medium);
    font-family: 'Arial', sans-serif;
}

.next-steps ul li:before {
    content: "→ ";
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: bold;
}

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

.legal-content {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.legal-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 400;
}

.legal-content h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 400;
}

.legal-content p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.legal-content ul li {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 10px;
    line-height: 1.7;
    font-family: 'Arial', sans-serif;
}

.contact-details {
    background-color: var(--bg-light);
    padding: 25px;
    border-left: 3px solid var(--primary-color);
    font-family: 'Arial', sans-serif;
    line-height: 1.9;
}

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

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

    .column-layout-intro,
    .two-col-asymmetric,
    .story-layout,
    .split-content-reverse,
    .service-detail-card,
    .contact-layout {
        flex-direction: column;
    }

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

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

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

    .cta-buttons,
    .thanks-actions {
        flex-direction: column;
    }
}