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

:root {
    --primary-color: #2c5f7e;
    --secondary-color: #8b9d9f;
    --accent-color: #d4a574;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dfe6e9;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(45, 52, 54, 0.95);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 15px;
    line-height: 1.5;
}

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

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

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

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

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

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

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 20px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

.ad-disclosure {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
    padding: 4px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 16px;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

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

.story-flow {
    background-color: var(--bg-white);
}

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

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

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

.hero-text-overlay {
    padding: 40px 0;
}

.hero-text-overlay h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.intro-text {
    font-size: 21px;
    color: var(--text-light);
    line-height: 1.6;
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.content-narrow h2 {
    font-size: 32px;
    line-height: 1.4;
    margin: 48px 0 24px;
    color: var(--primary-color);
}

.content-narrow h3 {
    font-size: 26px;
    line-height: 1.4;
    margin: 36px 0 20px;
    color: var(--text-dark);
}

.content-narrow p {
    margin-bottom: 24px;
}

.content-narrow a {
    color: var(--primary-color);
    text-decoration: underline;
}

.inline-image {
    margin: 40px 0;
    background-color: var(--bg-light);
}

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

.testimonial-inline {
    margin: 40px 0;
    padding: 28px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    font-style: italic;
    font-size: 19px;
    line-height: 1.6;
}

.testimonial-inline cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-size: 15px;
    color: var(--text-light);
}

.cta-inline {
    margin: 40px 0;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #234b64;
}

.service-cards-editorial {
    margin: 48px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.card-service {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
}

.card-service img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 4px;
    background-color: var(--secondary-color);
}

.card-service h3 {
    font-size: 24px;
    margin: 0 0 12px;
    color: var(--primary-color);
}

.card-service p {
    margin-bottom: 12px;
    font-size: 17px;
}

.card-service .price {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 16px;
}

.form-container {
    margin: 60px 0;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    background-color: var(--bg-white);
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #234b64;
}

.disclaimer-section {
    margin: 60px 0;
    padding: 28px;
    background-color: #fff8e1;
    border-left: 4px solid var(--accent-color);
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

.site-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 40px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
}

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

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

.footer-section a {
    color: #b2bec3;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-references {
    flex: 1 1 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--accent-color);
}

.footer-references ol {
    padding-left: 20px;
}

.footer-references ol li {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.5;
}

.footer-references ol li a {
    color: #b2bec3;
    text-decoration: none;
}

.footer-references ol li a:hover {
    color: white;
    text-decoration: underline;
}

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

.contact-page-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.contact-page-content h1 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.contact-block {
    padding: 28px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 8px;
}

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

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

.legal-page h2 {
    font-size: 26px;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.legal-page p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0 20px 40px;
    line-height: 1.7;
}

.legal-page li {
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .nav-minimal {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 16px;
    }

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

    .intro-text {
        font-size: 18px;
    }

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

    .form-container {
        padding: 24px;
    }

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