:root {
    --primary: #2d4a3e;
    --secondary: #8b6f4e;
    --accent: #c4a574;
    --dark: #1a2f26;
    --light: #f5f2ed;
    --text: #3d3d3d;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --border: #e0dcd5;
    --shadow: rgba(45, 74, 62, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--light);
}

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

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

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

.ad-disclosure {
    background-color: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.top-nav {
    background-color: var(--white);
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--text);
    transition: all 0.3s ease;
}

.editorial-wrapper {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-editorial {
    padding: 80px 0 60px;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-editorial .lead {
    font-size: 20px;
    color: var(--text-light);
    max-width: 620px;
    margin: 0 auto 32px;
}

.hero-image-container {
    margin: 48px 0;
    background-color: var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 420px;
    display: block;
}

.content-section {
    padding: 48px 0;
}

.content-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

.content-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin: 32px 0 16px;
}

.content-section p {
    margin-bottom: 20px;
    color: var(--text);
}

.inline-image {
    margin: 40px -60px;
    background-color: var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    height: 320px;
    display: block;
}

.inline-image figcaption {
    padding: 12px 20px;
    font-size: 14px;
    color: var(--text-light);
    background-color: var(--white);
    border-top: 1px solid var(--border);
}

.cta-inline {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
    margin: 48px 0;
    text-align: center;
}

.cta-inline h3 {
    color: var(--white);
    font-size: 26px;
    margin-bottom: 16px;
}

.cta-inline p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent);
    color: var(--dark);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 40px 0;
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    display: flex;
    flex-direction: row;
    transition: transform 0.3s ease;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

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

.service-card-image {
    width: 40%;
    min-height: 240px;
    background-color: var(--border);
}

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

.service-card-content {
    width: 60%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 16px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.full-width-section {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 24px;
    margin: 60px 0;
}

.full-width-section .editorial-wrapper {
    max-width: 900px;
}

.full-width-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 48px;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin-top: 8px;
}

.form-section {
    background-color: var(--white);
    padding: 60px 40px;
    border-radius: 16px;
    margin: 60px 0;
    box-shadow: 0 8px 40px var(--shadow);
}

.form-section h2 {
    text-align: center;
    margin-bottom: 12px;
}

.form-section .lead {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: var(--white);
}

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

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 32px;
}

.form-submit .btn-primary {
    padding: 16px 48px;
    font-size: 16px;
}

.quote-block {
    border-left: 4px solid var(--accent);
    padding: 24px 32px;
    margin: 40px 0;
    background-color: var(--white);
    border-radius: 0 8px 8px 0;
}

.quote-block p {
    font-size: 20px;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 12px;
}

.quote-block cite {
    font-size: 14px;
    color: var(--text-light);
    font-style: normal;
}

.testimonials-section {
    padding: 60px 0;
}

.testimonial-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px var(--shadow);
}

.testimonial-text {
    font-size: 17px;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--border);
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
}

.testimonial-info h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 4px;
}

.testimonial-info span {
    font-size: 13px;
    color: var(--text-light);
}

.about-intro {
    display: flex;
    gap: 48px;
    align-items: center;
    margin: 48px 0;
}

.about-intro-image {
    width: 45%;
    background-color: var(--border);
    border-radius: 12px;
    overflow: hidden;
}

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

.about-intro-text {
    width: 55%;
}

.values-list {
    list-style: none;
    margin: 32px 0;
}

.values-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.values-list li:last-child {
    border-bottom: none;
}

.value-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.value-content h4 {
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 4px;
}

.value-content p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

.contact-info-section {
    background-color: var(--white);
    padding: 48px;
    border-radius: 16px;
    margin: 48px 0;
}

.contact-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.contact-item {
    flex: 1;
    min-width: 200px;
}

.contact-item h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 17px;
    color: var(--dark);
    margin: 0;
    line-height: 1.6;
}

footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 24px 24px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--accent);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.disclaimer {
    background-color: rgba(255,255,255,0.05);
    padding: 24px;
    border-radius: 8px;
    margin-top: 40px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 20px 24px;
    box-shadow: 0 -4px 20px var(--shadow);
    z-index: 1000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    color: var(--text);
}

.cookie-text a {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.cookie-accept:hover {
    background-color: var(--dark);
}

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

.cookie-reject:hover {
    background-color: var(--light);
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.thanks-content h1 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 16px;
}

.thanks-content p {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 32px;
}

.legal-content {
    padding: 60px 0;
}

.legal-content h1 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content p,
.legal-content li {
    margin-bottom: 16px;
}

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

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 60px 24px;
    text-align: center;
}

.page-header h1 {
    font-size: 38px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.split-section {
    display: flex;
    gap: 0;
    margin: 60px 0;
}

.split-section .split-image {
    width: 50%;
    background-color: var(--border);
}

.split-section .split-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.split-section .split-content {
    width: 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white);
}

.split-section:nth-child(even) {
    flex-direction: row-reverse;
}

@media (max-width: 900px) {
    .service-card {
        flex-direction: column !important;
    }

    .service-card-image,
    .service-card-content {
        width: 100%;
    }

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

    .about-intro-image,
    .about-intro-text {
        width: 100%;
    }

    .split-section {
        flex-direction: column !important;
    }

    .split-section .split-image,
    .split-section .split-content {
        width: 100%;
    }

    .inline-image {
        margin: 40px 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 4px 12px var(--shadow);
    }

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

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

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
    }

    .hamburger {
        display: flex;
    }

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

    .content-section h2 {
        font-size: 26px;
    }

    .stats-row {
        flex-direction: column;
        gap: 32px;
    }

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

    .contact-grid {
        flex-direction: column;
        gap: 32px;
    }

    .form-section {
        padding: 40px 24px;
    }
}
