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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #c09a6e;
    --text-dark: #1a1a1a;
    --text-light: #5a5a5a;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

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

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
}

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

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

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

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

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

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

.main-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.ad-disclosure {
    flex: 1;
    text-align: center;
}

.disclosure-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

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

.hero-magazine {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-color: var(--primary-color);
}

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

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

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

.hero-content {
    text-align: center;
    color: var(--bg-white);
    max-width: 900px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.intro-magazine {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.magazine-grid-intro {
    display: flex;
    gap: 3rem;
}

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

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

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

.info-box {
    background-color: var(--bg-white);
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
}

.info-box h3 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.context-section {
    padding: 5rem 0;
}

.two-col-editorial {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.col-text {
    flex: 1;
}

.col-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.col-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.services-preview {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-center p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-magazine-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card-magazine {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

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

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-content p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

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

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

.btn-service {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.form-section {
    padding: 5rem 0;
}

.form-wrapper-magazine {
    background-color: var(--bg-light);
    padding: 3rem;
    border-left: 6px solid var(--secondary-color);
}

.form-intro {
    margin-bottom: 2.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    font-family: Georgia, serif;
    background-color: var(--bg-white);
}

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

.btn-submit {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    cursor: pointer;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.expertise-section {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.three-col-magazine {
    display: flex;
    gap: 3rem;
}

.expertise-col {
    flex: 1;
}

.expertise-col h3 {
    color: var(--accent-color);
    margin-bottom: 1.2rem;
}

.expertise-col p {
    line-height: 1.7;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 1.2rem;
}

.footer-col p {
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s;
}

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

.disclaimer-footer {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    z-index: 1000;
    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;
    flex-wrap: wrap;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: background-color 0.3s;
}

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

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

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

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

.thanks-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    text-align: center;
    padding: 4rem 2rem;
}

.thanks-content {
    max-width: 700px;
}

.thanks-content h1 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.service-detail {
    background-color: var(--bg-white);
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--secondary-color);
}

.btn-back {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    margin-top: 2rem;
    transition: background-color 0.3s;
}

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

.about-hero {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.about-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-intro h1 {
    margin-bottom: 2rem;
}

.about-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-section {
    padding: 5rem 0;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
}

.about-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

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

.team-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-top: 3px solid var(--secondary-color);
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--secondary-color);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-member p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-page-content {
    padding: 5rem 0;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

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

.contact-detail h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.contact-detail p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background-color: var(--bg-light);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-page {
    padding: 5rem 0;
}

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

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

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.legal-content p {
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.legal-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .two-col-editorial {
        flex-direction: column;
    }

    .service-card-magazine {
        flex: 1 1 100%;
    }

    .three-col-magazine {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

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