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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2d5f7f;
    --accent-color: #d4a574;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
}

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

.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 260px;
    height: 100vh;
    background: var(--primary-color);
    color: white;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    list-style: none;
    margin-top: 60px;
    flex-grow: 1;
}

.nav-links li {
    margin-bottom: 24px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.nav-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.legal-link {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.main-content {
    margin-left: 260px;
    min-height: 100vh;
}

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

.hero-content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.hero-label {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-editorial h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-intro {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 50px;
}

.hero-image {
    width: 100%;
    margin-top: 40px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.intro-story,
.approach-section,
.insight-section,
.services-preview,
.form-section,
.trust-section,
.final-cta {
    padding: 80px 60px;
}

.narrow-text {
    max-width: 720px;
    margin: 0 auto;
}

.narrow-text h2 {
    font-size: 36px;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.narrow-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.intro-story {
    background: var(--bg-white);
}

.approach-section {
    background: var(--bg-light);
}

.inline-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 30px 0;
}

.inline-cta {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.inline-cta:hover {
    background: var(--primary-color);
}

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

.insight-points {
    margin-top: 40px;
}

.insight-item {
    margin-bottom: 40px;
    padding-left: 25px;
    border-left: 3px solid var(--accent-color);
}

.insight-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.insight-item p {
    font-size: 17px;
    color: var(--text-light);
}

.services-preview {
    background: var(--bg-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background: white;
    padding: 40px 35px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    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);
}

.service-card.featured {
    border: 2px solid var(--accent-color);
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select-service:hover {
    background: var(--secondary-color);
}

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

.consultation-form {
    max-width: 600px;
    margin: 40px auto 0;
}

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

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

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

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

.form-group input[readonly] {
    background: var(--bg-light);
    color: var(--text-dark);
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #c49563;
}

.trust-section {
    background: var(--bg-light);
}

.testimonial {
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.final-cta {
    background: var(--primary-color);
    text-align: center;
}

.final-cta h2 {
    color: white;
}

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

.btn-primary-large {
    display: inline-block;
    padding: 18px 48px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-primary-large:hover {
    background: #c49563;
    transform: translateY(-3px);
}

.site-footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 60px 30px;
    margin-left: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

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

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

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--accent-color);
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.btn-sticky {
    padding: 16px 32px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-sticky:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 58, 82, 0.98);
    color: white;
    padding: 25px 30px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.btn-accept:hover {
    background: #c49563;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

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

.thanks-icon {
    font-size: 80px;
    color: var(--success-color);
    margin-bottom: 30px;
}

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

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

.service-info {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.service-info strong {
    color: var(--primary-color);
}

.btn-back-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-back-home:hover {
    background: var(--secondary-color);
}

.contact-page {
    padding: 80px 60px;
}

.contact-info {
    max-width: 600px;
    margin: 40px auto;
}

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

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

.contact-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

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

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.legal-content h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
}

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

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .sidebar-nav {
        width: 220px;
    }

    .main-content {
        margin-left: 220px;
    }

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

@media (max-width: 768px) {
    .sidebar-nav {
        width: 100%;
        height: auto;
        position: relative;
        padding: 20px;
    }

    .main-content {
        margin-left: 0;
    }

    .nav-links {
        margin-top: 30px;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav-links li {
        margin-bottom: 0;
    }

    .hero-editorial,
    .intro-story,
    .approach-section,
    .insight-section,
    .services-preview,
    .form-section,
    .trust-section,
    .final-cta,
    .contact-page,
    .legal-page {
        padding: 50px 30px;
    }

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

    .hero-intro {
        font-size: 18px;
    }

    .narrow-text h2 {
        font-size: 28px;
    }

    .service-price {
        font-size: 26px;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .btn-sticky {
        font-size: 14px;
        padding: 14px 24px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}