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

:root {
    --primary: #1a3a5c;
    --secondary: #e8a54b;
    --accent: #2d5a7b;
    --light: #f7f4ef;
    --dark: #1c1c1c;
    --text: #3d3d3d;
    --muted: #6b6b6b;
    --white: #ffffff;
    --border: #d4cfc5;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

.container-wide {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary);
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

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

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

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

.hero-editorial {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    text-align: center;
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.25;
    margin-bottom: 24px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-editorial .lead {
    font-size: 20px;
    opacity: 0.9;
    max-width: 540px;
    margin: 0 auto 36px;
}

.btn {
    display: inline-block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 32px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

.section {
    padding: 70px 0;
}

.section-alt {
    background: var(--white);
}

.section-dark {
    background: var(--primary);
    color: var(--white);
}

.section-accent {
    background: linear-gradient(180deg, #f0ebe3 0%, var(--light) 100%);
}

.article-content {
    font-size: 18px;
}

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

.article-content h3 {
    font-size: 24px;
    color: var(--dark);
    margin: 36px 0 18px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin: 20px 0 20px 24px;
}

.article-content li {
    margin-bottom: 10px;
}

.inline-image {
    margin: 40px -60px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

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

.inline-image figcaption {
    font-size: 14px;
    color: var(--muted);
    padding: 12px 16px;
    background: var(--white);
    font-style: italic;
}

.pullquote {
    border-left: 4px solid var(--secondary);
    padding: 24px 32px;
    margin: 40px 0;
    background: var(--white);
    font-size: 22px;
    font-style: italic;
    color: var(--primary);
}

.inline-cta {
    background: var(--primary);
    color: var(--white);
    padding: 32px 40px;
    margin: 48px 0;
    border-radius: 8px;
    text-align: center;
}

.inline-cta p {
    margin-bottom: 20px;
    font-size: 18px;
}

.cards-row {
    display: flex;
    gap: 24px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.card-image {
    height: 180px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image svg {
    width: 64px;
    height: 64px;
    fill: var(--white);
    opacity: 0.8;
}

.card-content {
    padding: 24px;
}

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

.card-content p {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 16px;
}

.price-tag {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.price-tag span {
    font-size: 14px;
    font-weight: 400;
    color: var(--muted);
}

.services-list {
    margin: 40px 0;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    gap: 32px;
}

.service-item:last-child {
    border-bottom: none;
}

.service-info {
    flex: 1;
}

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

.service-info p {
    color: var(--muted);
    font-size: 16px;
}

.service-price {
    text-align: right;
    flex-shrink: 0;
}

.service-price .amount {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.service-price .period {
    font-size: 14px;
    color: var(--muted);
    display: block;
}

.testimonial {
    background: var(--white);
    padding: 36px;
    border-radius: 8px;
    margin: 32px 0;
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 80px;
    color: var(--secondary);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    opacity: 0.3;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.testimonial cite {
    font-style: normal;
    font-size: 14px;
    color: var(--muted);
}

.testimonial cite strong {
    color: var(--dark);
    display: block;
}

.form-section {
    background: var(--white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    margin: 40px 0;
}

.form-section h2 {
    text-align: center;
    margin-bottom: 32px;
    color: var(--primary);
}

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

.form-group label {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(45,90,123,0.15);
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

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

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

.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px 0;
    flex-wrap: wrap;
}

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

.stat-number {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary);
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

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

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

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

.footer-col h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--secondary);
}

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

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

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

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

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

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta .btn {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    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-content p {
    font-size: 14px;
    flex: 1;
}

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

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

.cookie-buttons button {
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
}

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

.cookie-reject {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
}

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

.page-header h1 {
    font-size: 36px;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.8;
}

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

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

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

.content-page p {
    margin-bottom: 16px;
}

.content-page ul {
    margin: 16px 0 16px 24px;
}

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

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

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-info-item {
    margin-bottom: 28px;
}

.contact-info-item h3 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 8px;
}

.contact-info-item p {
    font-size: 18px;
    color: var(--dark);
}

.contact-map {
    flex: 1;
    min-width: 280px;
    min-height: 300px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map svg {
    width: 80px;
    height: 80px;
    fill: var(--white);
    opacity: 0.4;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    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(--primary);
    margin-bottom: 16px;
}

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

.feature-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.feature-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 24px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

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

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark);
}

.feature-item p {
    font-size: 15px;
    color: var(--muted);
}

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

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image svg {
    width: 120px;
    height: 120px;
    fill: var(--white);
    opacity: 0.3;
}

.timeline {
    position: relative;
    margin: 48px 0;
    padding-left: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    margin-bottom: 36px;
    padding-left: 24px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--secondary);
    border-radius: 50%;
}

.timeline-item h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 8px;
}

.timeline-item .year {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    color: var(--secondary);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.timeline-item p {
    color: var(--muted);
    font-size: 15px;
}

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

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid var(--border);
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }

    nav a:last-child {
        border-bottom: none;
    }

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

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

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .stats-row {
        gap: 32px;
    }

    .stat-number {
        font-size: 36px;
    }

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

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

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

    .service-item {
        flex-direction: column;
        gap: 16px;
    }

    .service-price {
        text-align: left;
    }

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

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

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