:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --max-width: 720px;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.3;
    margin-bottom: 0.8em;
    font-weight: 700;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 0.3em;
}

h2 {
    font-size: 2em;
    margin-top: 1.5em;
}

h3 {
    font-size: 1.5em;
}

p {
    margin-bottom: 1.3em;
}

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

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

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

ul, ol {
    margin-bottom: 1.5em;
    padding-left: 2em;
}

li {
    margin-bottom: 0.5em;
}

blockquote {
    margin: 2.5em 0;
    padding: 1.5em 2em;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    font-style: italic;
    font-size: 1.1em;
    color: var(--text-light);
}

button, .btn, .cta-button, .submit-btn {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    display: inline-block;
}

button:hover, .btn:hover, .cta-button:hover, .submit-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept, .btn-reject {
    padding: 10px 24px;
    font-size: 0.95em;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.btn-accept:hover {
    background: #2980b9;
}

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

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

.main-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--secondary-color);
}

.editorial-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px 20px;
}

.article-header {
    text-align: center;
    margin-bottom: 50px;
}

.article-header h1 {
    font-size: 2.8em;
    margin-bottom: 0.3em;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2em;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 0;
}

.hero-image {
    margin: 50px 0;
    border-radius: 8px;
    overflow: hidden;
}

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

.article-section {
    margin-bottom: 60px;
}

.lead-text {
    font-size: 1.3em;
    line-height: 1.7;
    color: var(--primary-color);
    margin-bottom: 1.5em;
}

.content-image {
    margin: 40px 0;
    border-radius: 6px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
}

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

.cta-link {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--secondary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.cta-button {
    margin: 10px;
}

.cta-button-large {
    background: var(--accent-color);
    color: var(--white);
    padding: 18px 48px;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-button-large:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

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

.method-item {
    margin-bottom: 35px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 6px;
}

.method-item h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.service-card {
    margin: 35px 0;
    padding: 30px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.6em;
}

.price-tag {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--accent-color);
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-link {
    color: var(--secondary-color);
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-section {
    margin-top: 80px;
    padding: 50px 40px;
    background: var(--bg-light);
    border-radius: 8px;
}

.editorial-form {
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1em;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s ease;
}

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

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

.submit-btn {
    width: 100%;
    margin-top: 10px;
}

.form-privacy {
    margin-top: 20px;
    font-size: 0.85em;
    color: var(--text-light);
    text-align: center;
}

.final-cta {
    text-align: center;
    margin: 60px 0;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
    animation: fadeInUp 0.4s ease;
}

.sticky-cta.show {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sticky-btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(231, 76, 60, 0.4);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #c0392b;
    box-shadow: 0 6px 24px rgba(231, 76, 60, 0.5);
    transform: translateY(-2px);
}

.services-detailed {
    margin-top: 60px;
}

.service-full {
    margin-bottom: 70px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
}

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

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

.service-header h2 {
    margin-top: 0;
    margin-bottom: 15px;
}

.service-price {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--accent-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-body ul {
    margin: 25px 0;
}

.service-cta {
    margin-top: 30px;
}

.contact-info-section {
    margin: 60px 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 30px;
}

.contact-item h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.contact-item p {
    margin-bottom: 10px;
}

.contact-note {
    font-size: 0.9em;
    color: var(--text-light);
    font-style: italic;
}

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

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

.faq-item h3 {
    color: var(--secondary-color);
    font-size: 1.2em;
    margin-bottom: 12px;
}

.stats-container {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

.stat-number {
    font-size: 3em;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1em;
    color: var(--text-light);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.team-grid {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-member {
    padding: 25px;
    background: var(--bg-light);
    border-radius: 6px;
}

.team-member h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.team-member .role {
    font-size: 0.95em;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.thanks-page {
    text-align: center;
}

.thanks-info {
    margin: 40px 0;
    padding: 25px;
    background: #e8f5e9;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.next-steps {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    padding: 25px;
    background: var(--bg-light);
    border-radius: 6px;
    text-align: left;
}

.step-item h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.legal-page ul {
    line-height: 1.8;
}

.legal-page h2 {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.legal-page h2:first-of-type {
    border-top: none;
    margin-top: 0;
}

.gdpr-purpose, .gdpr-right, .cookie-type {
    margin: 25px 0;
    padding: 20px;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

.gdpr-purpose h3, .gdpr-right h3, .cookie-type h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 1.2em;
}

.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 20px 20px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95em;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .stats-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1;
        min-width: 200px;
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(50% - 15px);
    }

    .contact-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-item {
        flex: 1 1 calc(33.333% - 24px);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

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

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
        flex: 1;
    }
}

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

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.6em;
    }

    .article-header h1 {
        font-size: 2.2em;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        display: none;
    }

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

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

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

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

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

    .sticky-btn {
        padding: 12px 20px;
        font-size: 0.9em;
    }
}