:root {
    --primary: #1a3a5c;
    --secondary: #c9a227;
    --accent: #2d6a4f;
    --light: #f8f6f2;
    --dark: #1c1c1c;
    --text: #333333;
    --text-light: #666666;
    --bg-alt: #e8e4dc;
    --success: #2d6a4f;
    --error: #b33a3a;
    --font-main: 'Georgia', 'Times New Roman', serif;
    --font-heading: 'Trebuchet MS', 'Lucida Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.narrow-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

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;
}

p {
    margin-bottom: 1.2rem;
}

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

.ad-disclosure {
    background-color: var(--dark);
    color: #fff;
    font-size: 0.75rem;
    text-align: center;
    padding: 6px 10px;
}

.top-nav {
    background-color: #fff;
    padding: 18px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

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

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

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

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

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

.hero-editorial {
    padding: 80px 0;
    background-color: var(--bg-alt);
    position: relative;
}

.hero-editorial .narrow-container {
    text-align: center;
}

.hero-editorial h1 {
    font-size: 3rem;
    margin-bottom: 1.8rem;
    color: var(--primary);
}

.hero-editorial .lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image-wrap {
    margin: 40px auto;
    max-width: 900px;
    background-color: var(--bg-alt);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.editorial-content p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
}

.editorial-content h2 {
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.inline-image {
    margin: 40px 0;
    background-color: var(--bg-alt);
    border-radius: 6px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.inline-image figcaption {
    padding: 12px 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.inline-cta {
    background-color: var(--primary);
    color: #fff;
    padding: 35px 40px;
    border-radius: 8px;
    margin: 45px 0;
    text-align: center;
}

.inline-cta h3 {
    color: #fff;
    margin-bottom: 15px;
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: #b8931f;
    color: var(--dark);
}

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

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

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

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

.quote-block {
    background-color: var(--light);
    border-left: 4px solid var(--secondary);
    padding: 30px 35px;
    margin: 40px 0;
    font-style: italic;
    font-size: 1.15rem;
}

.quote-block cite {
    display: block;
    margin-top: 15px;
    font-size: 0.95rem;
    font-style: normal;
    color: var(--text-light);
}

.testimonial-inline {
    background-color: #fff;
    padding: 35px;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.testimonial-inline .stars {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-inline p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-inline .author {
    font-weight: 600;
    color: var(--dark);
}

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

.services-section {
    padding: 80px 0;
    background-color: #fff;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--light);
    padding: 35px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 700;
}

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

.trust-section {
    padding: 60px 0;
    background-color: var(--bg-alt);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.trust-item .number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--primary);
    font-weight: 700;
}

.trust-item .label {
    font-size: 0.95rem;
    color: var(--text-light);
}

.form-section {
    padding: 80px 0;
    background-color: var(--primary);
}

.form-section h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 45px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    font-family: var(--font-main);
    border: 2px solid #ddd;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

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

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

.form-submit {
    text-align: center;
}

.form-submit .btn {
    width: 100%;
    padding: 16px 30px;
    font-size: 1.1rem;
}

footer {
    background-color: var(--dark);
    color: #ccc;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

.footer-col a {
    color: #aaa;
    font-size: 0.95rem;
}

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

.footer-col p {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 25px;
    text-align: center;
    font-size: 0.85rem;
}

.disclaimer-section {
    background-color: var(--bg-alt);
    padding: 40px 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.references-section {
    padding: 50px 0;
    background-color: #fff;
}

.references-section h3 {
    margin-bottom: 25px;
}

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

.references-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

.references-list li::before {
    content: attr(data-ref);
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.references-list a {
    color: var(--accent);
    word-break: break-all;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark);
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

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

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

.cookie-buttons button {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

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

.cookie-reject {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.cookie-buttons button:hover {
    opacity: 0.85;
}

.page-header {
    background-color: var(--primary);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    margin-bottom: 10px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
}

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

.page-content h2 {
    margin-top: 40px;
}

.page-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-content li {
    margin-bottom: 8px;
}

.about-intro {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

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

.about-intro .image {
    flex: 0 0 400px;
    background-color: var(--bg-alt);
    border-radius: 10px;
    overflow: hidden;
}

.about-intro .image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.team-section {
    padding: 60px 0;
    background-color: var(--bg-alt);
}

.team-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 0 0 280px;
    text-align: center;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
}

.team-member .photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--bg-alt);
    margin: 0 auto 20px;
    overflow: hidden;
}

.team-member .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    margin-bottom: 5px;
}

.team-member .position {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-info-section {
    padding: 80px 0;
}

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

.contact-details {
    flex: 1 1 350px;
}

.contact-details h3 {
    margin-bottom: 25px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item .label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.contact-item .value {
    color: var(--text-light);
}

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

.thanks-content {
    text-align: center;
    padding: 100px 20px;
}

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

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: #fff;
}

.thanks-content h1 {
    color: var(--success);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 30px;
}

.benefits-list {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    margin: 50px 0;
}

.benefits-list h3 {
    text-align: center;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.benefit-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.benefit-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.benefit-text h4 {
    margin-bottom: 5px;
}

.benefit-text p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 90;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta .btn {
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    padding: 12px 24px;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

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

    .hamburger {
        display: flex;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

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

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

    .about-intro .image {
        flex: 0 0 auto;
        width: 100%;
    }

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

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

    .trust-items {
        gap: 30px;
    }

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

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

    .hero-editorial {
        padding: 50px 0;
    }

    .hero-image-wrap img {
        height: 280px;
    }

    .inline-image img {
        height: 220px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .team-member {
        flex: 1 1 100%;
    }
}
