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

:root {
    --primary: #2c3e50;
    --secondary: #e74c3c;
    --accent: #f39c12;
    --text: #34495e;
    --light: #ecf0f1;
    --white: #ffffff;
    --border: #bdc3c7;
}

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

.editorial-wrapper {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

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

header {
    background: var(--primary);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: 0.3s;
}

.hero-editorial {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #34495e 100%);
    color: var(--white);
    text-align: center;
}

.hero-editorial h1 {
    font-size: 48px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-editorial .subtitle {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.9;
    font-weight: 300;
}

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

.story-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary);
    text-align: center;
}

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

.story-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.inline-image {
    width: 100%;
    height: 400px;
    background: var(--light);
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-inline {
    display: inline-flex;
    padding: 14px 35px;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin: 25px 0;
    transition: all 0.3s;
}

.cta-inline:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.cta-block {
    background: var(--light);
    padding: 50px 30px;
    text-align: center;
    border-radius: 8px;
    margin: 50px 0;
}

.cta-block h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--primary);
}

.cta-block p {
    font-size: 18px;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-flex;
    padding: 16px 45px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 16px 35px;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 999;
    transition: all 0.3s;
}

.sticky-cta:hover {
    background: #c0392b;
    transform: scale(1.05);
}

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

.service-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 35px;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

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

.service-card p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.testimonial {
    background: #f8f9fa;
    padding: 30px;
    border-left: 4px solid var(--accent);
    margin: 40px 0;
    font-style: italic;
}

.testimonial p {
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial .author {
    font-weight: 600;
    color: var(--primary);
    font-style: normal;
}

.form-section {
    background: var(--light);
    padding: 60px 30px;
    margin: 60px 0;
    border-radius: 8px;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary);
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--primary);
    font-size: 16px;
}

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

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

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

.submit-button {
    padding: 16px 45px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.urgency-banner {
    background: var(--accent);
    color: var(--white);
    padding: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    margin: 40px 0;
    border-radius: 5px;
}

.trust-elements {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
}

.trust-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.trust-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary);
}

.trust-content p {
    font-size: 16px;
}

footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 20px 30px;
}

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

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

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

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 25px;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.cookie-accept:hover {
    background: #e67e22;
}

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

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

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

.thanks-container h1 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 25px;
}

.thanks-container p {
    font-size: 20px;
    margin-bottom: 35px;
    max-width: 600px;
}

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

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

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

.legal-page p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-page ul {
    margin: 20px 0 20px 40px;
}

.legal-page li {
    font-size: 17px;
    margin-bottom: 12px;
    line-height: 1.7;
}

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

.contact-info {
    max-width: 800px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    padding: 25px;
    background: var(--light);
    border-radius: 8px;
}

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

.info-item p {
    font-size: 17px;
}

@media (max-width: 768px) {
    .hero-editorial h1 {
        font-size: 36px;
    }

    .hero-editorial .subtitle {
        font-size: 18px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        padding: 20px;
        gap: 15px;
    }

    nav ul.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        padding: 12px 25px;
        font-size: 14px;
    }

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

    .story-section h2 {
        font-size: 30px;
    }

    .story-section h3 {
        font-size: 24px;
    }
}
