:root {
    --color-primary: #1a3a52;
    --color-secondary: #2d5a7b;
    --color-accent: #c9a227;
    --color-light: #f8f6f2;
    --color-dark: #0d1b26;
    --color-muted: #6b7c8a;
    --color-bg-alt: #e8e4dc;
    --color-success: #2a6b4a;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', 'Roboto', sans-serif;
    --max-width-narrow: 720px;
    --max-width-content: 960px;
    --max-width-wide: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-light);
}

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

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

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

.site-header {
    background-color: var(--color-primary);
    padding: 0.75rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.ad-disclosure {
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 0.5rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    font-weight: normal;
    letter-spacing: 0.02em;
}

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

.main-nav a {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff;
    border-bottom-color: var(--color-accent);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: transform 0.3s ease;
}

.hero-editorial {
    background-color: var(--color-bg-alt);
    padding: 4rem 1.5rem;
    text-align: center;
}

.hero-editorial-inner {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

.hero-editorial h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: normal;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.hero-editorial .lead {
    font-size: 1.15rem;
    color: var(--color-muted);
    margin-bottom: 2rem;
}

.hero-image-container {
    max-width: var(--max-width-content);
    margin: 2rem auto 0;
    background-color: var(--color-secondary);
    border-radius: 4px;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 400px;
}

.editorial-section {
    padding: 3.5rem 1.5rem;
}

.editorial-section.alt-bg {
    background-color: var(--color-bg-alt);
}

.editorial-narrow {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

.editorial-content {
    max-width: var(--max-width-content);
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-intro h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: normal;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.section-intro p {
    color: var(--color-muted);
    font-size: 1.05rem;
}

.editorial-text p {
    margin-bottom: 1.5rem;
}

.editorial-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: normal;
    color: var(--color-primary);
    margin: 2.5rem 0 1rem;
}

.inline-image {
    margin: 2.5rem 0;
    background-color: var(--color-secondary);
    border-radius: 4px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    height: 280px;
}

.inline-image figcaption {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--color-muted);
    background-color: var(--color-light);
    text-align: center;
    font-style: italic;
}

.cta-inline {
    background-color: var(--color-primary);
    color: #fff;
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    margin: 2.5rem 0;
}

.cta-inline p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #b8921f;
    color: var(--color-dark);
    transform: translateY(-1px);
}

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

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

.btn-light {
    background-color: #fff;
    color: var(--color-primary);
}

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

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

.service-item {
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    flex-wrap: wrap;
}

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

.service-image {
    flex: 0 0 35%;
    min-height: 220px;
    background-color: var(--color-secondary);
}

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

.service-content {
    flex: 1;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: normal;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.service-content p {
    color: var(--color-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.testimonial-block {
    background-color: var(--color-primary);
    color: #fff;
    padding: 2.5rem;
    border-radius: 4px;
    margin: 3rem 0;
    position: relative;
}

.testimonial-block::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 4rem;
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    opacity: 0.3;
}

.testimonial-block blockquote {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    padding-left: 1rem;
}

.testimonial-block cite {
    display: block;
    font-style: normal;
    font-size: 0.95rem;
    opacity: 0.85;
    padding-left: 1rem;
}

.contact-info-block {
    background-color: #fff;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.contact-info-block h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: normal;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

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

.contact-info-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-bg-alt);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

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

.contact-label {
    font-weight: 500;
    color: var(--color-primary);
    min-width: 100px;
}

.contact-value {
    color: var(--color-muted);
}

.form-container {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-top: 2rem;
}

.form-container h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: normal;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
    background-color: #fff;
}

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

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

.form-submit {
    text-align: center;
    margin-top: 1.5rem;
}

.form-submit .btn {
    min-width: 200px;
}

.site-footer {
    background-color: var(--color-dark);
    color: rgba(255,255,255,0.8);
    padding: 3rem 1.5rem 1.5rem;
}

.footer-inner {
    max-width: var(--max-width-wide);
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: normal;
    color: #fff;
    margin-bottom: 1rem;
}

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

.footer-col li {
    margin-bottom: 0.5rem;
}

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

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

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

.footer-bottom {
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.legal-links a {
    color: rgba(255,255,255,0.5);
}

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

.disclaimer-section {
    background-color: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: 4px;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.6;
}

.disclaimer-section p {
    margin-bottom: 0.5rem;
}

.disclaimer-section p:last-child {
    margin-bottom: 0;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.thanks-box {
    background-color: #fff;
    padding: 3rem;
    border-radius: 4px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.thanks-icon svg {
    width: 30px;
    height: 30px;
    stroke: #fff;
    stroke-width: 3;
    fill: none;
}

.thanks-box h1 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: normal;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.thanks-box p {
    color: var(--color-muted);
    margin-bottom: 1.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: #fff;
    padding: 1.25rem 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

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

.cookie-inner {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--color-accent);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.6rem 1.25rem;
    border: none;
    border-radius: 3px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

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

.cookie-accept:hover {
    background-color: #b8921f;
}

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

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

.page-hero {
    background-color: var(--color-primary);
    color: #fff;
    padding: 3rem 1.5rem;
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
}

.page-hero p {
    opacity: 0.85;
    font-size: 1.05rem;
}

.policy-content {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.policy-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: normal;
    color: var(--color-primary);
    margin: 2.5rem 0 1rem;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    margin-bottom: 1rem;
}

.policy-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.two-col-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.two-col-layout .col-main {
    flex: 2;
    min-width: 300px;
}

.two-col-layout .col-side {
    flex: 1;
    min-width: 280px;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .main-nav {
        display: none;
        width: 100%;
        padding-top: 1rem;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .main-nav a {
        display: block;
        padding: 0.5rem 0;
    }

    .hero-editorial h1 {
        font-size: 1.875rem;
    }

    .hero-image-container img {
        height: 260px;
    }

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        flex: none;
        width: 100%;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }
}
