:root {
    --primary: #1a2e4c;
    --secondary: #3d6b99;
    --accent: #e8a54b;
    --light: #f7f9fc;
    --dark: #0d1821;
    --text: #2c3e50;
    --text-light: #5a6d7e;
    --white: #ffffff;
    --border: #d1dce5;
    --success: #27ae60;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
}

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

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

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

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

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

.ad-disclosure {
    background-color: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 8px 15px;
    font-size: 0.85rem;
}

.top-nav {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.nav-links a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    margin: 5px 0;
    transition: 0.3s;
}

.hero-editorial {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.hero-editorial h1 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.25;
    font-weight: 700;
}

.hero-editorial .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-image-wrap {
    margin: 50px 0;
    background-color: var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.hero-image-wrap img {
    width: 100%;
    height: 420px;
    display: block;
}

.section-story {
    padding: 70px 0;
}

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

.section-story h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 28px;
    font-weight: 600;
}

.section-story h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 40px 0 20px;
    font-weight: 600;
}

.section-story p {
    margin-bottom: 22px;
    font-size: 1.05rem;
}

.inline-image {
    margin: 45px 0;
    background-color: var(--border);
    border-radius: 8px;
    overflow: hidden;
}

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

.inline-image figcaption {
    padding: 14px 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    background-color: var(--light);
}

.cta-inline {
    display: inline-block;
    background-color: var(--accent);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    margin: 25px 0;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

.cta-block {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    margin: 50px 0;
}

.cta-block h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 18px;
}

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

.cta-block .cta-btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

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

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 35px 30px;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.service-card h4 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 14px;
}

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

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

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

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

.about-split.reverse {
    flex-direction: row-reverse;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    background-color: var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 380px;
    display: block;
}

.values-list {
    list-style: none;
    margin: 30px 0;
}

.values-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

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

.contact-grid {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-detail .icon {
    width: 45px;
    height: 45px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail .text strong {
    display: block;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-detail .text span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form-wrap {
    flex: 1.2;
    background-color: var(--light);
    padding: 40px;
    border-radius: 12px;
}

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

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

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

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

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

.submit-btn {
    background-color: var(--accent);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

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

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

.thanks-content h1 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

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

.thanks-content .back-link {
    display: inline-block;
    margin-top: 30px;
    color: var(--secondary);
    font-weight: 500;
}

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

.legal-content h1 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 1.4rem;
    color: var(--primary);
    margin: 35px 0 18px;
}

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

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

.footer {
    background-color: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-legal {
    display: flex;
    gap: 25px;
}

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

.disclaimer {
    background-color: var(--light);
    padding: 25px 30px;
    border-radius: 8px;
    margin: 40px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    border-left: 4px solid var(--secondary);
}

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

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

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

.cookie-inner p {
    flex: 1;
    font-size: 0.95rem;
    min-width: 280px;
}

.cookie-inner a {
    color: var(--accent);
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.cookie-btn:hover {
    transform: translateY(-2px);
}

.sticky-cta {
    position: fixed;
    bottom: 90px;
    right: 25px;
    z-index: 998;
}

.sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background-color: var(--secondary);
    transform: scale(1.1);
}

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

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

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

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

    .mobile-toggle {
        display: block;
    }

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

    .about-split {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .footer-grid {
        flex-direction: column;
        gap: 35px;
    }

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

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

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

@media (max-width: 600px) {
    .hero-editorial {
        padding: 50px 0 40px;
    }

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

    .section-story {
        padding: 45px 0;
    }

    .cta-block {
        padding: 35px 25px;
    }

    .contact-form-wrap {
        padding: 25px;
    }

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