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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

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

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

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

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 4px;
    margin: 0 15px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-menu a:hover {
    border-bottom-color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 550px;
    align-items: center;
    background-color: #f8f9fa;
}

.hero-left {
    flex: 1;
    padding: 60px 80px;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a252f;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-right {
    flex: 1;
    background-color: #e8eef2;
}

.hero-right img {
    width: 100%;
    height: 100%;
    min-height: 550px;
}

.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3498db;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #3498db;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.split-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-reverse {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 36px;
    color: #1a252f;
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-text p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 18px;
}

.content-image {
    flex: 1;
    background-color: #f4f6f8;
    border-radius: 8px;
    overflow: hidden;
}

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

.trust-indicators {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.trust-indicators h2 {
    text-align: center;
    font-size: 38px;
    color: #1a252f;
    margin-bottom: 50px;
}

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

.process-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px 28px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.process-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.process-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.services-preview {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-text h2 {
    font-size: 36px;
    color: #1a252f;
    margin-bottom: 20px;
}

.services-text > p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 35px;
}

.service-list {
    margin-bottom: 35px;
}

.service-item {
    padding: 25px 0;
    border-bottom: 1px solid #e1e8ed;
}

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

.service-item h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 12px;
}

.service-item .price {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

.services-image {
    background-color: #f4f6f8;
    border-radius: 8px;
    overflow: hidden;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 38px;
    color: #1a252f;
    margin-bottom: 50px;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

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

.testimonial-author {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
}

.insights-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.reference-link {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
}

.reference-link:hover {
    text-decoration: underline;
}

.form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.form-section h2 {
    text-align: center;
    font-size: 38px;
    color: #1a252f;
    margin-bottom: 15px;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 45px;
}

.contact-form {
    max-width: 650px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #d1d9e0;
    border-radius: 6px;
    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: #3498db;
}

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

.btn-submit:hover {
    background-color: #229954;
}

.disclaimer-section {
    padding: 50px 0;
    background-color: #fef9e7;
    border-top: 2px solid #f4d03f;
    border-bottom: 2px solid #f4d03f;
}

.disclaimer-text {
    font-size: 14px;
    color: #7d6608;
    line-height: 1.8;
    max-width: 1100px;
    margin: 0 auto;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

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

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

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

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

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

.footer-column ul li a {
    color: #bdc3c7;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.references-list {
    list-style: none;
}

.references-list li {
    font-size: 13px;
    margin-bottom: 8px;
}

.references-list a {
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 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: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
    min-width: 250px;
}

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

.btn-cookie {
    background-color: #27ae60;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie:hover {
    background-color: #229954;
}

.btn-cookie-outline {
    background-color: transparent;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-outline:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.page-header {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #e1e8ed;
}

.page-header h1 {
    font-size: 44px;
    color: #1a252f;
    margin-bottom: 15px;
}

.header-subtitle {
    font-size: 19px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.about-intro {
    padding: 80px 0;
    background-color: #ffffff;
}

.expertise-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.expertise-section h2 {
    text-align: center;
    font-size: 38px;
    color: #1a252f;
    margin-bottom: 50px;
}

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

.expertise-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px 28px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.expertise-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.expertise-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.methodology-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.values-section {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    color: #1a252f;
    margin-bottom: 50px;
}

.values-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
}

.value-item h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background-color: #3498db;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    background-color: #ffffff;
    color: #3498db;
}

.cta-section .btn-primary:hover {
    background-color: #ecf0f1;
}

.services-detailed {
    padding: 60px 0;
}

.service-card-large {
    margin-bottom: 60px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.service-content {
    display: flex;
    align-items: stretch;
}

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

.service-info {
    flex: 1.2;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h2 {
    font-size: 32px;
    color: #1a252f;
    margin-bottom: 20px;
}

.service-description {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 15px;
    color: #5a6c7d;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
}

.service-visual {
    flex: 1;
    background-color: #f4f6f8;
}

.service-visual img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.contact-section {
    padding: 60px 0;
}

.contact-split {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    color: #1a252f;
    margin-bottom: 20px;
}

.contact-info-block > p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-note {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #3498db;
    margin-top: 30px;
}

.contact-note p {
    font-size: 14px;
    color: #2c3e50;
    line-height: 1.6;
}

.contact-image-block {
    flex: 1;
    background-color: #f4f6f8;
    border-radius: 8px;
    overflow: hidden;
}

.map-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.map-section h2 {
    font-size: 32px;
    color: #1a252f;
    margin-bottom: 15px;
}

.map-description {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    max-width: 800px;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.thanks-content h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 35px;
}

.service-confirmation {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 35px;
    font-size: 16px;
    color: #2c3e50;
}

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

.next-steps h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.steps-list {
    padding-left: 25px;
}

.steps-list li {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 12px;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 60px 0;
    background-color: #ffffff;
}

.last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

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

.legal-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h4 {
    font-size: 18px;
    color: #34495e;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 18px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.cookie-table tr {
    border-bottom: 1px solid #e1e8ed;
}

.cookie-table td {
    padding: 15px 10px;
    font-size: 15px;
    color: #5a6c7d;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 50px 30px;
    }

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

    .split-content,
    .split-reverse {
        flex-direction: column;
    }

    .service-content,
    .service-content.reverse {
        flex-direction: column;
    }

    .contact-split {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .nav-disclosure {
        margin: 0;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions {
        justify-content: stretch;
    }

    .btn-cookie,
    .btn-cookie-outline {
        flex: 1;
    }
}

@media (max-width: 640px) {
    .hero-left h1 {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .content-text h2 {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 34px;
    }

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

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }
}