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

:root {
    --color-primary: #2c3e50;
    --color-secondary: #8b6f47;
    --color-accent: #d4af37;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-background: #ffffff;
    --color-background-alt: #f8f6f3;
    --color-border: #e0dcd5;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
}

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

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

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

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

.main-nav {
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu li a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
}

.hero-editorial {
    background-color: var(--color-background-alt);
    padding: 4rem 0;
}

.hero-content-magazine {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text-column {
    flex: 1;
    max-width: 600px;
}

.hero-image-column {
    flex: 1;
    background-color: var(--color-border);
}

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

.lead-text {
    font-size: 1.25rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.intro-multi-column {
    padding: 5rem 0;
    background-color: var(--color-background);
}

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

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.column-layout-three {
    display: flex;
    gap: 3rem;
}

.text-column-narrow {
    flex: 1;
    font-size: 1rem;
    line-height: 1.8;
}

.featured-service-offset {
    padding: 5rem 0;
    background-color: var(--color-background-alt);
}

.offset-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card-large {
    flex: 2;
    min-width: 500px;
    background-color: var(--color-background);
    overflow: hidden;
}

.service-card-large img {
    width: 100%;
    height: 350px;
    background-color: var(--color-border);
}

.service-card-medium {
    flex: 1;
    min-width: 350px;
    background-color: var(--color-background);
    display: flex;
    flex-direction: column;
}

.service-card-medium img {
    width: 100%;
    height: 250px;
    background-color: var(--color-border);
}

.service-card-content {
    padding: 2rem;
}

.service-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price-tag {
    display: inline-block;
    background-color: var(--color-secondary);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
}

.services-magazine-grid {
    padding: 5rem 0;
    background-color: var(--color-background);
}

.section-title-editorial {
    font-size: 2.5rem;
    text-align: left;
    margin-bottom: 3rem;
    border-bottom: 3px solid var(--color-secondary);
    padding-bottom: 1rem;
}

.services-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-item-inline {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    border-left: 4px solid var(--color-accent);
    padding-left: 2rem;
}

.service-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1;
}

.service-details {
    flex: 1;
}

.service-details h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.inline-price {
    display: inline-block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-top: 0.5rem;
}

.cta-sidebar-section {
    padding: 5rem 0;
    background-color: var(--color-background-alt);
}

.content-with-sidebar {
    display: flex;
    gap: 3rem;
}

.main-content-area {
    flex: 2;
}

.main-content-area img {
    width: 100%;
    height: 400px;
    margin-top: 2rem;
    background-color: var(--color-border);
}

.sidebar-cta-box {
    flex: 1;
    background-color: var(--color-primary);
    color: white;
    padding: 2.5rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-cta-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.sidebar-cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.btn-primary {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-primary);
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #c49d2e;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--color-secondary);
    padding: 0.9rem 2rem;
    border: 2px solid var(--color-secondary);
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary-large {
    display: inline-block;
    background-color: var(--color-secondary);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

.form-section-integrated {
    padding: 5rem 0;
    background-color: var(--color-background);
}

.form-header-editorial {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-modern {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    font-family: Georgia, serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: var(--color-secondary);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

.trust-indicators {
    padding: 4rem 0;
    background-color: var(--color-primary);
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    gap: 3rem;
}

.trust-item {
    text-align: center;
    color: white;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.trust-item p {
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.main-footer {
    background-color: var(--color-primary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.email-text {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.disclaimer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    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: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--color-accent);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.page-hero-simple {
    background-color: var(--color-background-alt);
    padding: 4rem 0;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
}

.services-detailed {
    padding: 4rem 0;
}

.service-full-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

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

.service-visual {
    flex: 1;
    background-color: var(--color-border);
}

.service-visual img {
    width: 100%;
    height: 400px;
}

.service-description {
    flex: 1;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

.service-pricing {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.price-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-secondary);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.cta-bottom {
    padding: 5rem 0;
    background-color: var(--color-secondary);
    text-align: center;
    color: white;
}

.cta-bottom h2 {
    color: white;
}

.cta-bottom p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.about-hero {
    padding: 4rem 0;
    background-color: var(--color-background-alt);
}

.about-intro-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text-side {
    flex: 1;
}

.about-image-side {
    flex: 1;
    background-color: var(--color-border);
}

.about-image-side img {
    width: 100%;
    height: 450px;
}

.intro-large {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.philosophy-section {
    padding: 5rem 0;
    background-color: var(--color-background);
}

.expertise-areas {
    padding: 5rem 0;
    background-color: var(--color-background-alt);
}

.section-title-centered {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.expertise-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.expertise-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--color-background);
    overflow: hidden;
}

.expertise-card img {
    width: 100%;
    height: 250px;
    background-color: var(--color-border);
}

.expertise-card h3,
.expertise-card p {
    padding: 0 1.5rem;
}

.expertise-card p {
    padding-bottom: 1.5rem;
}

.values-section {
    padding: 5rem 0;
    background-color: var(--color-background);
}

.values-layout {
    display: flex;
    gap: 3rem;
}

.value-block {
    flex: 1;
    padding: 2rem;
    border-left: 4px solid var(--color-secondary);
}

.collaboration-section {
    padding: 5rem 0;
    background-color: var(--color-background-alt);
}

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

.cta-about h2 {
    color: white;
}

.cta-about p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-hero {
    background-color: var(--color-background-alt);
    padding: 4rem 0;
    text-align: center;
}

.contact-intro {
    font-size: 1.2rem;
    color: var(--color-text-light);
}

.contact-info-section {
    padding: 5rem 0;
}

.contact-grid {
    display: flex;
    gap: 4rem;
}

.contact-details {
    flex: 1;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.note-text {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--color-text-light);
}

.contact-visual {
    flex: 1;
    background-color: var(--color-border);
}

.contact-visual img {
    width: 100%;
    height: 400px;
    margin-bottom: 2rem;
}

.contact-note {
    background-color: var(--color-background-alt);
    padding: 2rem;
}

.contact-process {
    padding: 5rem 0;
    background-color: var(--color-background-alt);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.faq-section {
    padding: 5rem 0;
    background-color: var(--color-background);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 1.5rem;
    border-left: 4px solid var(--color-accent);
    background-color: var(--color-background-alt);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.cta-contact {
    padding: 5rem 0;
    background-color: var(--color-secondary);
    text-align: center;
    color: white;
}

.cta-contact h2 {
    color: white;
}

.cta-contact p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.thanks-section {
    padding: 6rem 0;
    background-color: var(--color-background-alt);
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: var(--color-background);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.steps-list {
    list-style: none;
    margin: 1.5rem 0;
}

.steps-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.steps-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.additional-info {
    padding: 4rem 0;
    background-color: var(--color-background);
}

.info-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.info-links a {
    color: var(--color-secondary);
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: color 0.3s ease;
}

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

.legal-content {
    padding: 5rem 0;
    background-color: var(--color-background);
}

.legal-content h1 {
    margin-bottom: 2rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.legal-content h3 {
    margin-top: 1.5rem;
    font-size: 1.3rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.7rem;
}

.last-updated {
    font-style: italic;
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.cookie-table th {
    background-color: var(--color-primary);
    color: white;
    font-weight: 600;
}

.cookie-table td {
    background-color: var(--color-background-alt);
}

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

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

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

    .service-card-large,
    .service-card-medium {
        min-width: 100%;
    }

    .content-with-sidebar {
        flex-direction: column;
    }

    .sidebar-cta-box {
        position: static;
    }

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

    .about-intro-split {
        flex-direction: column;
    }

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

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

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

    .trust-grid {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-background);
        flex-direction: column;
        gap: 0;
        border-top: 1px solid var(--color-border);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

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

    .nav-menu li {
        border-bottom: 1px solid var(--color-border);
    }

    .nav-menu li a {
        display: block;
        padding: 1rem 2rem;
    }

    .nav-toggle {
        display: flex;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .info-links {
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .container-magazine,
    .container-wide,
    .container-narrow {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .hero-image-column img {
        height: 300px;
    }
}