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

:root {
    --primary-color: #2c5282;
    --secondary-color: #4a7ba7;
    --accent-color: #e07a3c;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #38a169;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.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;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    background-color: var(--accent-color);
    color: white;
    transition: all 0.3s ease;
}

.btn-cookie:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

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

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

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

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

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

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

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

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

.hero-text-center {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

.hero-subhead {
    font-size: 1.35rem;
    color: var(--text-light);
    font-weight: 400;
}

.hero-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.intro-text {
    font-size: 1.35rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 400;
}

.content-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.content-narrow p {
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.inline-image {
    margin: 3rem 0;
}

.content-img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.inline-cta-block {
    background-color: var(--primary-color);
    padding: 3rem 2rem;
    margin: 4rem 0;
}

.cta-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.cta-inner h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.trust-markers {
    background-color: var(--bg-light);
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.trust-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.trust-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.trust-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial-inline {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.testimonial-inline blockquote {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
}

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

.services-preview {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.services-intro {
    max-width: 720px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.services-intro p {
    font-size: 1.15rem;
    color: var(--text-light);
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    padding: 2.5rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

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

.service-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.service-link:hover {
    background-color: var(--secondary-color);
}

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

.form-container {
    max-width: 650px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
    font-weight: 700;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.service-form {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    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: var(--primary-color);
}

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

.btn-submit:hover {
    background-color: #c96a30;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 122, 60, 0.3);
}

.final-cta {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.cta-box {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 3rem;
    background-color: var(--primary-color);
    border-radius: 8px;
}

.cta-box h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-box p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

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

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.site-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-section p {
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

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

.footer-section 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;
    color: rgba(255,255,255,0.6);
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.thanks-container {
    max-width: 650px;
    text-align: center;
    padding: 4rem 3rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-container p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-selected {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    margin: 1.5rem 0;
}

.contact-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-page h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-item {
    padding: 2rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.services-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.services-page h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
    font-weight: 700;
}

.services-page-intro {
    max-width: 720px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.service-detail {
    padding: 3rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.service-detail h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-detail p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-detail .service-price {
    margin: 1.5rem 0;
}

.about-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-page h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.about-page h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.about-page p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-page p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
    color: var(--text-light);
}

.legal-page li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

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

    .hero-subhead {
        font-size: 1.1rem;
    }

    .content-narrow {
        padding: 3rem 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .trust-container {
        flex-direction: column;
    }

    .service-cards {
        flex-direction: column;
    }

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

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

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

    .service-form {
        padding: 2rem 1.5rem;
    }
}