:root {
    --primary: #2c4a6e;
    --primary-dark: #1a3550;
    --secondary: #e8b74a;
    --accent: #5a8fc4;
    --text: #2d3748;
    --text-light: #64748b;
    --bg: #fafbfc;
    --bg-alt: #f1f5f9;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 4px 24px rgba(44, 74, 110, 0.08);
    --shadow-lg: 0 12px 40px rgba(44, 74, 110, 0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --max-width: 720px;
    --max-width-wide: 1100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
}

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

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

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

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

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

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: var(--max-width-wide);
    margin: 0 auto;
}

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

.ad-disclosure {
    background: var(--bg-alt);
    color: var(--text-light);
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a {
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius);
    transition: background 0.2s ease, color 0.2s ease;
}

nav a:hover {
    background: var(--bg-alt);
    color: var(--primary);
}

nav a.active {
    background: var(--primary);
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: transform 0.3s ease;
}

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

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

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

.hero-image-wrapper {
    margin: 40px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-alt);
}

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

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

.editorial-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

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

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

.editorial-section p.highlight {
    background: var(--bg-alt);
    padding: 20px 24px;
    border-left: 4px solid var(--secondary);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
}

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

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

.inline-image figcaption {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-light);
    background: var(--white);
    text-align: center;
}

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

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

.cta-inline a {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary-dark);
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-inline a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 183, 74, 0.3);
    color: var(--primary-dark);
}

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

.service-card {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

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

.service-card-image {
    flex: 0 0 280px;
    background: var(--bg-alt);
}

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

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

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

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

.service-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
}

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

.service-btn {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s ease;
}

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

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

.alt-section .container {
    max-width: var(--max-width);
}

.testimonial-block {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin: 32px 0;
}

.testimonial-block blockquote {
    font-size: 19px;
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.testimonial-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
}

.testimonial-author-info strong {
    display: block;
    color: var(--primary-dark);
}

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

.form-section {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin: 48px 0;
}

.form-section h3 {
    font-size: 26px;
    color: var(--primary-dark);
    margin-bottom: 8px;
    text-align: center;
}

.form-section > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(44, 74, 110, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--secondary) 0%, #d4a43a 100%);
    color: var(--primary-dark);
    border: none;
    border-radius: var(--radius);
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 183, 74, 0.4);
}

.about-hero {
    display: flex;
    gap: 48px;
    align-items: center;
    padding: 60px 0;
}

.about-hero-image {
    flex: 0 0 360px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-alt);
}

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

.about-hero-content {
    flex: 1;
}

.about-hero-content h1 {
    font-size: 38px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 40px 0;
}

.contact-info-item {
    flex: 1;
    min-width: 200px;
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

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

.contact-info-item p {
    color: var(--primary-dark);
    font-size: 17px;
    font-weight: 500;
}

footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 32px;
    margin-top: 80px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 0 24px;
}

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

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    max-width: var(--max-width-wide);
    margin: 48px auto 0;
    padding: 24px 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    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.6);
}

.disclaimer-section {
    background: var(--bg-alt);
    padding: 32px;
    border-radius: var(--radius);
    margin: 48px 0;
    border: 1px solid var(--border);
}

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

.disclaimer-section p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, #d4a43a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-dark);
}

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

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

.thanks-content a {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
}

.thanks-content a:hover {
    background: var(--primary-dark);
    color: var(--white);
}

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

.legal-page h1 {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 32px;
    text-align: center;
}

.legal-page h2 {
    font-size: 22px;
    color: var(--primary);
    margin: 40px 0 16px;
}

.legal-page p,
.legal-page li {
    color: var(--text);
    margin-bottom: 16px;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

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

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

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

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

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

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

.cookie-btn {
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.2s ease;
}

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

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

.cookie-btn.reject {
    background: var(--bg-alt);
    color: var(--text);
}

.cookie-btn.reject:hover {
    background: var(--border);
}

.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 24px;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: var(--primary-dark);
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: transform 0.2s ease;
}

.sticky-cta a:hover {
    transform: scale(1.05);
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }

    nav {
        display: none;
        width: 100%;
        flex-direction: column;
        padding-top: 16px;
    }

    nav.active {
        display: flex;
    }

    nav a {
        width: 100%;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
    }

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

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

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

    .service-card-image {
        flex: none;
        height: 200px;
    }

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

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

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

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

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

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

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