:root {
    --color-primary: #2d3748;
    --color-secondary: #4a5568;
    --color-accent: #3182ce;
    --color-accent-hover: #2c5282;
    --color-light: #f7fafc;
    --color-dark: #1a202c;
    --color-text: #2d3748;
    --color-text-light: #718096;
    --color-border: #e2e8f0;
    --color-success: #38a169;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --max-width: 1200px;
    --narrow-width: 720px;
}

* {
    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(--color-text);
    background-color: #fff;
}

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

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

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

ul {
    list-style: none;
}

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 280px;
    font-size: 14px;
    margin: 0;
}

.cookie-content a {
    color: #90cdf4;
}

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

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

.header-top {
    background: var(--color-light);
    padding: 6px 20px;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.ad-disclosure {
    font-size: 12px;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo:hover {
    color: var(--color-dark);
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    color: var(--color-text);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.2s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

.hero-editorial {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    inset: 0;
}

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

.hero-text-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    color: #fff;
    max-width: 800px;
}

.hero-text-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-text-overlay .lead {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

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

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

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

.btn-hero {
    background: #fff;
    color: var(--color-dark);
    font-size: 16px;
    padding: 15px 35px;
}

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

.btn-large {
    padding: 16px 40px;
    font-size: 17px;
}

.editorial-content {
    padding: 0;
}

.story-section {
    padding: 80px 20px;
}

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

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

.narrow-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--color-dark);
    letter-spacing: -0.5px;
}

.narrow-content p {
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.inline-image {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
}

.inline-image.offset-right {
    margin-left: auto;
    margin-right: 10%;
    max-width: 700px;
}

.image-wrapper {
    border-radius: 8px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: auto;
}

.inline-image figcaption {
    margin-top: 12px;
    font-size: 14px;
    color: var(--color-text-light);
    text-align: center;
}

.inline-cta {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    color: var(--color-accent);
}

.inline-cta::after {
    content: ' →';
}

.services-preview {
    padding: 80px 20px;
    background: #fff;
}

.service-cards-row {
    max-width: var(--max-width);
    margin: 40px auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    height: 180px;
    overflow: hidden;
}

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

.card-content {
    padding: 25px;
}

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

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

.card-content .price {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-accent);
}

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

.testimonial-inline {
    padding: 60px 20px;
    background: var(--color-dark);
    color: #fff;
}

.testimonial-inline blockquote {
    max-width: var(--narrow-width);
    margin: 0 auto;
    text-align: center;
}

.testimonial-inline p {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-inline cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.8;
}

.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
    text-align: center;
    color: #fff;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-content .btn-large {
    background: #fff;
    color: var(--color-accent);
}

.cta-content .btn-large:hover {
    background: var(--color-light);
    color: var(--color-accent-hover);
}

.page-intro {
    padding: 80px 20px 40px;
    text-align: center;
}

.page-intro h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.page-intro .lead {
    font-size: 20px;
    color: var(--color-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.team-section {
    padding: 80px 20px;
}

.team-grid {
    max-width: var(--max-width);
    margin: 40px auto 0;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--color-dark);
}

.team-member .role {
    font-size: 14px;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p:last-child {
    font-size: 15px;
    color: var(--color-secondary);
}

.services-detailed {
    padding: 40px 20px 80px;
}

.service-full {
    max-width: var(--max-width);
    margin: 0 auto 60px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-full.reverse {
    flex-direction: row-reverse;
}

.service-image-side {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.service-image-side img {
    width: 100%;
    height: auto;
}

.service-content-side {
    flex: 1;
    min-width: 300px;
}

.service-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-light);
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.service-content-side h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.service-content-side p {
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.service-features {
    margin-bottom: 25px;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: var(--color-secondary);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}

.service-pricing {
    margin-bottom: 25px;
}

.price-main {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark);
}

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

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.form-container > p {
    color: var(--color-secondary);
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    font-family: inherit;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background: #fff;
    transition: border-color 0.2s ease;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 0;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    margin-top: 10px;
}

.contact-section {
    padding: 40px 20px 80px;
}

.contact-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-info-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 40px 30px;
    background: var(--color-light);
    border-radius: 12px;
    text-align: center;
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: #fff;
    border-radius: 50%;
}

.contact-info-card h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.contact-info-card p {
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.contact-note {
    font-size: 14px;
    color: var(--color-text-light);
}

.faq-section {
    padding: 80px 20px;
    background: var(--color-light);
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-border);
}

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

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.faq-item p {
    color: var(--color-secondary);
}

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

.thanks-container {
    max-width: 600px;
    margin: 0 auto;
}

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

.thanks-section h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.service-confirmation {
    font-size: 18px;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.thanks-section p {
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding-bottom: 80px;
}

.legal-date,
.legal-subtitle {
    font-size: 14px;
    color: var(--color-text-light);
}

.legal-content {
    padding: 40px 20px 80px;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 15px;
    color: var(--color-dark);
}

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

.legal-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 25px 0 10px;
    color: var(--color-dark);
}

.legal-content p {
    margin-bottom: 15px;
    color: var(--color-secondary);
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-content li {
    list-style: disc;
    margin-bottom: 8px;
    color: var(--color-secondary);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.cookie-table th {
    background: var(--color-light);
    font-weight: 700;
    color: var(--color-dark);
}

.cookie-table td {
    color: var(--color-secondary);
}

.footer {
    background: var(--color-dark);
    color: #fff;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand .logo {
    display: block;
    margin-bottom: 15px;
    color: #fff;
}

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

.footer-links,
.footer-contact {
    min-width: 200px;
}

.footer h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    margin-bottom: 10px;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 50px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.disclaimer {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

@media (max-width: 900px) {
    .service-full,
    .service-full.reverse {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-top: 1px solid var(--color-border);
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

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

    .nav-menu li {
        border-bottom: 1px solid var(--color-border);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 15px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-editorial {
        height: 60vh;
        min-height: 400px;
    }

    .hero-text-overlay {
        padding: 30px;
        max-width: 100%;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
        justify-content: flex-end;
    }

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

    .hero-text-overlay .lead {
        font-size: 16px;
    }

    .page-intro h1 {
        font-size: 32px;
    }

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

    .story-section {
        padding: 60px 20px;
    }

    .testimonial-inline p {
        font-size: 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

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

    .footer-content {
        gap: 40px;
    }

    .inline-image.offset-right {
        margin-right: auto;
    }
}

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

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

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions .btn {
        width: 100%;
    }
}
