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

:root {
    --primary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    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: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s;
}

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

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

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

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

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

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

.logo {
    font-family: 'Arial', sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.editorial-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-editorial {
    padding: 4rem 0 3rem;
}

.hero-text-center {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-text-center h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.lead-intro {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.6;
}

.hero-image {
    width: 100%;
    margin: 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.story-section {
    padding: 3rem 0;
}

.text-column h2 {
    font-size: 2.2rem;
    margin: 2.5rem 0 1.5rem;
    line-height: 1.4;
    font-weight: 400;
    color: var(--primary-color);
}

.text-column h3 {
    font-size: 1.7rem;
    margin: 2rem 0 1rem;
    font-weight: 400;
    color: var(--primary-color);
}

.text-column h4 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
    color: var(--text-color);
}

.text-column p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.inline-cta {
    text-align: center;
    margin: 2.5rem 0;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.05rem;
    transition: all 0.3s;
}

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

.inline-image,
.inline-image-wide {
    margin: 2.5rem 0;
}

.inline-image img,
.inline-image-wide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.highlight-box {
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
}

.highlight-box p {
    margin: 0;
    font-size: 1.05rem;
}

.feature-list {
    margin: 1.5rem 0 2rem 2rem;
}

.feature-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.link-cta {
    display: inline-block;
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    margin: 1.5rem 0;
    transition: color 0.3s;
}

.link-cta:hover {
    color: #c0392b;
}

.services-pricing {
    padding: 3rem 0;
    background: var(--light-bg);
    margin: 3rem -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.service-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

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

.service-card.premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.service-card.premium h3,
.service-card.premium p,
.service-card.premium li {
    color: white;
}

.service-card.premium .price-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 20px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card > p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-details ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.98rem;
}

.service-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.price-tag {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
    margin: 1.5rem 0;
    font-family: 'Arial', sans-serif;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.service-card.premium .btn-select-service {
    background: white;
    color: var(--primary-color);
}

.service-card.premium .btn-select-service:hover {
    background: rgba(255, 255, 255, 0.9);
}

.form-container {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 2.5rem;
    margin: 2rem 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    font-weight: normal;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    width: auto;
}

.checkbox-group a {
    color: var(--accent-color);
}

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

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

.trust-elements {
    text-align: center;
    margin-top: 1.5rem;
}

.trust-elements p {
    font-size: 0.9rem;
    color: #777;
}

.final-story {
    padding: 3rem 0;
}

.final-cta-box {
    background: var(--primary-color);
    color: white;
    padding: 2.5rem;
    border-radius: 6px;
    text-align: center;
    margin: 2.5rem 0;
}

.final-cta-box h3 {
    color: white;
    margin-top: 0;
    font-size: 1.8rem;
}

.final-cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: all 0.3s;
}

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

.site-footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 1rem 1.5rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .editorial-content {
        padding: 0 1.5rem;
    }

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

    .lead-intro {
        font-size: 1.1rem;
    }

    .text-column h2 {
        font-size: 1.8rem;
    }

    .text-column h3 {
        font-size: 1.4rem;
    }

    .services-pricing {
        margin: 3rem -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

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

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

    .sticky-btn {
        display: block;
        text-align: center;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}