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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2d2d2d;
    background: #ffffff;
}

a {
    color: #1a5490;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d3a6b;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d2d2d;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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;
    text-align: center;
    font-size: 14px;
}

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

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

.btn-accept {
    background: #1a5490;
    color: #ffffff;
}

.btn-accept:hover {
    background: #0d3a6b;
}

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

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

.nav-minimal {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a5490;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #2d2d2d;
}

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

.btn-sticky {
    background: #e84545;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(232, 69, 69, 0.3);
    display: inline-block;
}

.btn-sticky:hover {
    background: #d43030;
    color: #ffffff;
}

.editorial-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px 80px;
}

.hero-editorial {
    margin-bottom: 60px;
}

.hero-content-narrow {
    text-align: center;
    margin-bottom: 40px;
}

.hero-content-narrow h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
}

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

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

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

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

.story-section h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.story-section.alternate {
    background: #f9f9f9;
    padding: 50px 30px;
    margin-left: -30px;
    margin-right: -30px;
}

.insight-block {
    background: #1a5490;
    color: #ffffff;
    padding: 50px 30px;
    margin: 60px -30px;
}

.pullquote {
    font-size: 24px;
    line-height: 1.5;
    font-style: italic;
    font-weight: 500;
    border-left: none;
    padding-left: 0;
    text-align: center;
}

.inline-image {
    margin: 40px 0;
}

.inline-image img {
    border-radius: 8px;
}

.full-width-image {
    margin: 60px -30px;
}

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

.cta-inline {
    text-align: center;
    margin: 60px 0;
    padding: 40px 30px;
    background: #f3f7fa;
    border-radius: 8px;
}

.cta-inline h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-inline p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555555;
}

.cta-inline.emphasis {
    background: #1a5490;
    color: #ffffff;
}

.cta-inline.emphasis h3 {
    color: #ffffff;
}

.btn-primary {
    display: inline-block;
    background: #1a5490;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #0d3a6b;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-primary.large {
    padding: 16px 40px;
    font-size: 18px;
}

.testimonial-section {
    margin: 60px 0;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #1a5490;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
    color: #2d2d2d;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #666666;
}

.benefits-list,
.values-list {
    margin: 30px 0;
    padding-left: 0;
    list-style: none;
}

.benefits-list li,
.values-list li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
}

.benefits-list li:before,
.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: 700;
    font-size: 20px;
}

.values-list li strong {
    color: #1a5490;
}

.services-pricing {
    margin: 60px 0;
}

.service-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
}

.service-card.featured {
    border-color: #1a5490;
    border-width: 3px;
}

.badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: #e84545;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.service-card h2,
.service-card h3 {
    color: #1a1a1a;
    margin-bottom: 12px;
}

.service-card h2 {
    font-size: 28px;
}

.service-card h3 {
    font-size: 22px;
    margin-top: 30px;
}

.service-age {
    font-size: 15px;
    color: #1a5490;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #2d2d2d;
}

.service-card ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-card ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.service-details-block {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
}

.service-details-block p {
    font-size: 15px;
    margin-bottom: 8px;
}

.service-details-block p:last-child {
    margin-bottom: 0;
}

.service-details {
    font-size: 15px;
    color: #666666;
    margin: 16px 0;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #1a5490;
    margin: 24px 0;
}

.price-note {
    font-size: 14px;
    color: #666666;
    margin-top: -20px;
    margin-bottom: 24px;
}

.form-section {
    background: #f3f7fa;
    padding: 50px 30px;
    margin: 60px -30px;
    border-radius: 8px;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-section p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #555555;
}

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

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d2d2d;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5490;
}

.btn-submit {
    width: 100%;
    background: #1a5490;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #0d3a6b;
}

.final-message {
    margin: 60px 0;
    text-align: center;
    font-size: 19px;
    line-height: 1.8;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.approach-section,
.urgency-section,
.benefits-section {
    margin: 60px 0;
}

.approach-section h2,
.urgency-section h2,
.benefits-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.approach-section p,
.urgency-section p,
.benefits-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.contact-card {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-card h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-card p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.contact-note {
    background: #e8f2f7;
    padding: 24px;
    border-radius: 6px;
    border-left: 4px solid #1a5490;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.location-section,
.faq-section,
.final-section,
.values-section {
    margin: 60px 0;
}

.location-section h2,
.faq-section h2,
.final-section h2,
.values-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.faq-item {
    margin-bottom: 32px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a5490;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #2d2d2d;
}

.thanks-container {
    text-align: center;
    padding: 40px 0;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-content {
    text-align: left;
    max-width: 700px;
    margin: 40px auto 0;
}

.thanks-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.next-steps {
    margin: 30px 0;
    padding-left: 24px;
}

.next-steps li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.info-box {
    background: #f3f7fa;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.info-box h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.info-box p {
    font-size: 16px;
    margin-bottom: 12px;
}

.info-box ul {
    margin-top: 16px;
    padding-left: 24px;
}

.info-box ul li {
    font-size: 16px;
    margin-bottom: 10px;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.last-updated {
    font-size: 14px;
    color: #666666;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-bottom: 16px;
    margin-top: 40px;
    color: #1a5490;
}

.legal-page h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 24px;
    color: #2d2d2d;
}

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

.legal-page ul {
    margin: 16px 0;
    padding-left: 32px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 15px;
}

.cookies-table th,
.cookies-table td {
    text-align: left;
    padding: 12px;
    border: 1px solid #d0d0d0;
}

.cookies-table th {
    background: #f3f7fa;
    font-weight: 600;
    color: #1a1a1a;
}

.site-footer {
    background: #2d2d2d;
    color: #ffffff;
    padding: 50px 30px 30px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

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

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

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

.footer-section ul li a {
    color: #cccccc;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #444444;
    text-align: center;
}

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

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

    .nav-links {
        gap: 20px;
    }

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

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

    .story-section h2,
    .page-header h1 {
        font-size: 28px;
    }

    .story-section p {
        font-size: 17px;
    }

    .pullquote {
        font-size: 20px;
    }

    .hero-image,
    .full-width-image,
    .story-section.alternate,
    .insight-block,
    .form-section {
        margin-left: -15px;
        margin-right: -15px;
    }

    .editorial-container {
        padding: 40px 15px 60px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .price {
        font-size: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

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

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

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

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

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