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

:root {
    --primary-color: #2c5282;
    --secondary-color: #4a5568;
    --accent-color: #3182ce;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --text-muted: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #48bb78;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    --card-shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.nav-top {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

.hero-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

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

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow-hover);
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-primary:hover {
    background-color: #1e3a5f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.cards-intro {
    background-color: var(--bg-light);
    padding: 80px 20px;
    text-align: center;
}

.cards-intro h2 {
    font-size: 38px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-lead {
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-cards {
    padding: 80px 20px;
}

.services-cards h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-4px);
}

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.card-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-select {
    background-color: var(--accent-color);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 80px 20px;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.form-section {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.form-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 50px;
    box-shadow: var(--card-shadow);
    max-width: 700px;
    margin: 0 auto;
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
    font-weight: 700;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid var(--border-color);
    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: var(--accent-color);
}

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

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

.trust-card {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.trust-card h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 700;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.trust-item {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 350px;
}

.trust-item h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

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

.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 20px 0;
}

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

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

.footer-column h4 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 25px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

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

.btn-cookie-accept:hover {
    background-color: #38a169;
}

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

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

.page-hero {
    background-color: var(--bg-light);
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-lead {
    font-size: 22px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 20px;
}

.content-card {
    margin-bottom: 60px;
}

.content-card h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 700;
}

.content-card p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.card-split {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.card-split.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
    min-width: 300px;
}

.split-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

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

.process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.process-item {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.process-item h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.process-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 16px;
}

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

.client-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.cta-simple {
    background-color: var(--bg-light);
    padding: 80px 20px;
    text-align: center;
}

.cta-simple h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-simple p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.services-detailed {
    padding: 80px 20px;
}

.service-detail-card {
    margin-bottom: 60px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.service-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}

.service-header.reverse {
    flex-direction: row-reverse;
}

.service-header-text {
    flex: 1;
    min-width: 300px;
    padding: 50px;
}

.service-header-text h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-price-large {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-header-image {
    flex: 1;
    min-width: 300px;
    height: 350px;
    overflow: hidden;
}

.service-header-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-body {
    padding: 50px;
    background-color: var(--bg-light);
}

.service-body h3 {
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-body h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin: 30px 0 15px;
    font-weight: 700;
}

.service-body p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-body ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.service-body ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.contact-content {
    padding: 80px 20px;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

.contact-info-card h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-text-card {
    flex: 1.5;
    min-width: 300px;
}

.contact-text-card h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-text-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin: 30px 0 15px;
    font-weight: 700;
}

.contact-text-card p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-text-card ul {
    list-style: none;
    padding-left: 0;
}

.contact-text-card ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-text-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 24px;
}

.map-placeholder {
    padding: 40px 20px;
    background-color: var(--bg-light);
}

.map-card {
    border-radius: 12px;
    overflow: hidden;
}

.thanks-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
    min-height: 60vh;
}

.thanks-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 60px;
    text-align: center;
    box-shadow: var(--card-shadow);
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: white;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.thanks-lead {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.legal-page {
    padding: 60px 20px;
    background-color: var(--bg-white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.legal-date {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0 20px 20px;
}

.legal-content ul li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

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

    .hero-content p {
        font-size: 18px;
    }

    .hero-image {
        height: 350px;
    }

    .cards-intro h2,
    .services-cards h2,
    .trust-card h2,
    .cta-content h2,
    .cta-simple h2 {
        font-size: 28px;
    }

    .section-lead,
    .cta-content p,
    .cta-simple p {
        font-size: 18px;
    }

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

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

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

    .cookie-buttons {
        width: 100%;
    }

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

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

    .split-image {
        height: 300px;
    }

    .service-header-text {
        padding: 30px;
    }

    .service-header-image {
        height: 250px;
    }

    .service-body {
        padding: 30px;
    }

    .thanks-card {
        padding: 40px 20px;
    }

    .thanks-card h1 {
        font-size: 32px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

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