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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #e07a3e;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --accent-green: #3d8f6b;
    --accent-blue: #4a90e2;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.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;
    font-size: 14px;
    text-align: center;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #2d7256;
}

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

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

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

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

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

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

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: var(--text-medium);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.editorial-main {
    max-width: 100%;
    margin: 0 auto;
}

.hero-minimal {
    max-width: 720px;
    margin: 60px auto 50px;
    padding: 0 20px;
    text-align: center;
}

.hero-minimal h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--text-dark);
}

.hero-intro {
    font-size: 24px;
    line-height: 1.5;
    color: var(--text-medium);
    font-weight: 400;
}

.content-narrow {
    max-width: 680px;
    margin: 50px auto;
    padding: 0 20px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.content-narrow p {
    margin-bottom: 24px;
}

.content-narrow h2 {
    font-size: 36px;
    line-height: 1.3;
    margin: 60px 0 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.content-narrow h3 {
    font-size: 26px;
    line-height: 1.4;
    margin: 40px 0 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.content-narrow h4 {
    font-size: 22px;
    line-height: 1.4;
    margin: 30px 0 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.content-narrow ul {
    margin: 20px 0 30px 30px;
}

.content-narrow li {
    margin-bottom: 12px;
}

.benefit-list li {
    margin-bottom: 16px;
    font-size: 19px;
}

.content-image {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.content-image img {
    width: 100%;
    border-radius: 8px;
}

.content-image-small {
    max-width: 800px;
    margin: 50px auto;
    padding: 0 20px;
}

.content-image-small img {
    width: 100%;
    border-radius: 8px;
}

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

.btn-text {
    display: inline-block;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-text:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 36px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #234d66;
    color: white;
    transform: translateY(-2px);
}

.btn-inline {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 28px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.btn-inline:hover {
    background-color: #c76a32;
    color: white;
    transform: translateY(-1px);
}

.btn-primary-large {
    display: inline-block;
    background-color: var(--accent-green);
    color: white;
    padding: 20px 48px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background-color: #2d7256;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61, 143, 107, 0.3);
}

.highlight-section {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin: 50px auto;
}

.testimonial-inline {
    max-width: 720px;
    margin: 60px auto;
    padding: 0 20px;
}

.testimonial-inline blockquote {
    background-color: var(--bg-light);
    padding: 35px 40px;
    border-left: 5px solid var(--secondary-color);
    font-style: italic;
    font-size: 20px;
    line-height: 1.6;
}

.testimonial-inline p {
    margin: 0 0 15px 0;
    color: var(--text-dark);
}

.testimonial-inline cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-medium);
    font-size: 16px;
}

.service-preview {
    background-color: white;
    padding: 30px;
    margin-bottom: 35px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.service-preview h4 {
    margin-top: 0;
    color: var(--primary-color);
}

.price-reveal {
    font-size: 26px;
    color: var(--accent-green);
    margin: 20px 0;
}

.form-section {
    max-width: 680px;
    margin: 70px auto;
    padding: 0 20px;
}

.form-container {
    background-color: var(--bg-light);
    padding: 50px 40px;
    border-radius: 8px;
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-container > p {
    margin-bottom: 30px;
    color: var(--text-medium);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

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

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

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    padding: 16px 36px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.final-cta {
    max-width: 720px;
    margin: 80px auto 60px;
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    border-radius: 12px;
    color: white;
}

.final-cta h3 {
    font-size: 36px;
    margin-bottom: 30px;
    color: white;
}

.service-detailed {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.service-header h2 {
    font-size: 38px;
    line-height: 1.3;
    color: var(--text-dark);
    margin: 0;
}

.age-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    align-self: flex-start;
}

.service-image {
    margin: 30px 0;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
}

.service-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

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

.service-content li {
    margin-bottom: 10px;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid var(--border-color);
}

.service-pricing .price {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-green);
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: -10px;
}

.contact-details {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.contact-info-card h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.info-item {
    margin-bottom: 30px;
}

.info-item:last-child {
    margin-bottom: 0;
}

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

.info-item p {
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0;
}

.info-item .note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
}

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

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

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

.faq-item p {
    line-height: 1.7;
    color: var(--text-medium);
}

.thanks-content {
    max-width: 720px;
    margin: 80px auto;
    padding: 0 20px;
}

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

.thanks-message h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--accent-green);
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.thanks-next-steps {
    text-align: left;
    margin: 40px 0;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.thanks-next-steps ul {
    margin-left: 25px;
}

.thanks-next-steps li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.btn-secondary {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.legal-page .content-narrow {
    max-width: 900px;
}

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

.legal-page h3 {
    font-size: 22px;
    margin: 35px 0 15px;
    color: var(--primary-color);
}

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

.legal-page li {
    margin-bottom: 10px;
}

.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.legal-page th,
.legal-page td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.legal-page th {
    background-color: var(--bg-light);
    font-weight: 600;
}

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

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    line-height: 1.6;
    color: #cccccc;
    font-size: 15px;
}

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

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

.footer-section a {
    color: #cccccc;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

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

.footer-bottom p {
    color: #cccccc;
    font-size: 14px;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
}

.btn-sticky {
    display: block;
    background-color: var(--accent-green);
    color: white;
    padding: 16px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #2d7256;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-links li {
        border-bottom: 1px solid var(--border-color);
    }

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

    .nav-links a {
        display: block;
        padding: 18px 20px;
    }

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

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

    .lead-text {
        font-size: 20px;
    }

    .content-narrow h2 {
        font-size: 30px;
    }

    .content-narrow h3 {
        font-size: 23px;
    }

    .highlight-section {
        padding: 30px 25px;
    }

    .testimonial-inline blockquote {
        padding: 25px 20px;
        font-size: 18px;
    }

    .form-container {
        padding: 35px 25px;
    }

    .final-cta {
        padding: 40px 25px;
    }

    .final-cta h3 {
        font-size: 28px;
    }

    .service-header h2 {
        font-size: 30px;
    }

    .service-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .contact-details {
        gap: 30px;
    }

    .contact-info-card {
        padding: 30px 25px;
    }

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

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

    .btn-sticky {
        width: 100%;
        text-align: center;
    }

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

    body {
        font-size: 17px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-minimal h1 {
        font-size: 42px;
    }

    .content-narrow h2 {
        font-size: 32px;
    }

    .footer-content {
        gap: 40px;
    }
}