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

:root {
    --primary-color: #1a4d6f;
    --secondary-color: #2d7a9f;
    --accent-color: #e8a53a;
    --dark-bg: #0f2332;
    --light-bg: #f4f7f9;
    --text-dark: #1f1f1f;
    --text-light: #ffffff;
    --text-gray: #556677;
    --border-color: #d4dce3;
}

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

.nav-minimal {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    backdrop-filter: blur(10px);
}

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

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

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-sticky {
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(232, 165, 58, 0.4);
    display: inline-block;
    transition: transform 0.2s;
}

.btn-sticky:hover {
    transform: scale(1.05);
}

.editorial-content {
    max-width: 100%;
}

.hero-editorial {
    padding: 4rem 2rem 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content-narrow {
    margin-bottom: 3rem;
}

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

.lead-text {
    font-size: 1.3rem;
    color: var(--text-gray);
    line-height: 1.6;
}

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

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

.content-block {
    padding: 4rem 2rem;
}

.narrow-column {
    max-width: 700px;
    margin: 0 auto;
}

.content-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
    line-height: 1.3;
}

.content-block p {
    margin-bottom: 1.5rem;
}

.inline-quote {
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
    margin: 3rem 0;
    font-style: italic;
    color: var(--text-gray);
    font-size: 1.15rem;
}

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

.image-break img {
    width: 100%;
    height: auto;
    display: block;
}

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

.bg-dark {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.bg-dark h2,
.bg-dark h3 {
    color: var(--text-light);
}

.bg-dark p {
    color: #d4dce3;
}

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

.highlight-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.clean-list {
    list-style: none;
    padding-left: 0;
}

.clean-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.clean-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.benefit-list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.benefit-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d9f5f;
    font-weight: bold;
    font-size: 1.3rem;
}

.emphasis-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
    margin: 2rem 0;
}

.testimonial-inline {
    padding: 4rem 2rem;
    background-color: #f9fafb;
}

.testimonial-inline blockquote {
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-dark);
    border: none;
    padding: 0;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    color: var(--text-gray);
    font-size: 1rem;
}

.pillars-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.pillar-card {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--accent-color);
}

.pillar-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.pillar-card p {
    margin-bottom: 0;
    font-size: 1rem;
}

.inline-cta-box {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 2.5rem;
    text-align: center;
    margin: 3rem 0;
    border-radius: 4px;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    display: inline-block;
    transition: transform 0.2s;
}

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

.numbered-list {
    margin: 2rem 0;
    padding-left: 2rem;
}

.numbered-list li {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    font-size: 1.1rem;
}

.pricing-cards {
    max-width: 1200px;
    margin: 3rem auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 0 2rem;
}

.price-card {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: #ffffff;
    border: 2px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
    border-color: var(--accent-color);
    border-width: 3px;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

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

.service-desc {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    min-height: 3rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Arial', sans-serif;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
    padding-left: 0;
}

.feature-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d9f5f;
    font-weight: bold;
}

.btn-select {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s;
}

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

.form-section {
    padding: 4rem 2rem;
    background-color: var(--light-bg);
}

.selected-service-text {
    background-color: #e7f4e4;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 1.2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: transform 0.2s;
}

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

.final-push {
    background-color: #fafbfc;
}

.closing-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin: 2rem 0;
}

.final-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-primary-large {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1.3rem 3rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    display: inline-block;
    transition: background-color 0.3s, transform 0.2s;
}

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

.site-footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 2rem 2rem;
}

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

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

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

.footer-col a {
    color: #d4dce3;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: #8a9ba8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(15, 35, 50, 0.98);
    color: var(--text-light);
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
    backdrop-filter: blur(10px);
}

.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: 1.5rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    transition: transform 0.2s;
}

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

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

.btn-accept:hover,
.btn-reject:hover {
    transform: translateY(-2px);
}

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

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

    .content-block h2 {
        font-size: 1.6rem;
    }

    body {
        font-size: 16px;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .price-card {
        max-width: 100%;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .btn-sticky {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .pricing-cards {
        justify-content: space-around;
    }

    .price-card {
        flex: 1 1 calc(50% - 2rem);
    }
}