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

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #57c5b6;
    --accent-color: #159895;
    --dark-color: #0f3443;
    --light-color: #f5f9fa;
    --text-color: #2c3e50;
    --text-light: #6c757d;
    --border-color: #e0e6ed;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background: #ffffff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
}

ul {
    list-style-position: inside;
    margin-bottom: 1.2rem;
}

.header-main {
    background: #ffffff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-main {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-main a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
}

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

.ad-label {
    background: var(--light-color);
    color: var(--text-light);
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-weight: 500;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--dark-color);
    position: fixed;
    top: 70px;
    right: 0;
    width: 250px;
    height: calc(100vh - 70px);
    padding: 2rem;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu a {
    color: #ffffff;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background: var(--light-color);
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: var(--border-color);
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--dark-color);
    border-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.container-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

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

.split-content {
    flex: 1;
    padding: 3rem 2rem;
}

.split-image {
    flex: 1;
    background: var(--border-color);
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-form {
    flex: 1;
    padding: 3rem;
    background: var(--light-color);
    border-radius: 8px;
}

section {
    padding: 5rem 0;
}

.intro-section {
    background: #ffffff;
}

.features-split {
    background: var(--light-color);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

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

.link-inline {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.link-inline:hover {
    color: var(--accent-color);
}

.container-centered {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.process-section {
    background: #ffffff;
}

.process-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.process-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 250px;
    padding: 2.5rem;
    background: var(--light-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.services-preview {
    background: #ffffff;
}

.service-preview-list {
    list-style: none;
    margin-bottom: 2rem;
}

.service-preview-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-preview-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.testimonials-section {
    background: var(--light-color);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.cta-section {
    background: #ffffff;
}

.cta-benefits {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.benefit-item {
    padding: 0.8rem 1.5rem;
    background: var(--light-color);
    border-radius: 6px;
    font-weight: 500;
    color: var(--primary-color);
}

.form-main, .form-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    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);
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.disclaimer-section {
    background: var(--light-color);
    padding: 3rem 0;
}

.disclaimer-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer-main {
    background: var(--dark-color);
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
}

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

.btn-cookie {
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-reject:hover {
    border-color: #ffffff;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.page-hero h1 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    background: #ffffff;
}

.values-section {
    background: var(--light-color);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.team-section {
    background: #ffffff;
}

.numbers-section {
    background: var(--dark-color);
    color: #ffffff;
}

.numbers-section h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
}

.numbers-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.number-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
}

.number-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.number-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.approach-section {
    background: var(--light-color);
}

.cta-bottom {
    background: var(--primary-color);
    color: #ffffff;
    text-align: center;
    padding: 5rem 2rem;
}

.cta-bottom h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.services-main {
    background: #ffffff;
}

.service-row {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

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

.service-image {
    flex: 1;
    background: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-details {
    flex: 1;
}

.service-includes {
    list-style: none;
    margin: 1.5rem 0;
}

.service-includes li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-light);
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 6px;
}

.price-label {
    font-size: 1rem;
    color: var(--text-light);
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-select-service {
    background: var(--primary-color);
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pricing-notes {
    background: var(--light-color);
    padding: 3rem 0;
}

.cta-services {
    background: var(--primary-color);
    color: #ffffff;
    text-align: center;
    padding: 5rem 2rem;
}

.cta-services h2 {
    color: #ffffff;
}

.cta-services p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.contact-main {
    background: #ffffff;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

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

.contact-note {
    padding: 1.5rem;
    background: var(--light-color);
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
    margin-top: 2rem;
}

.contact-note p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form-section {
    background: var(--light-color);
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-form-section > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.form-contact {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-map {
    background: #ffffff;
}

.contact-map h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.map-placeholder {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    color: var(--text-light);
}

.thanks-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: #ffffff;
    padding: 6rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-content h1 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.thanks-content > p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.thanks-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-details p {
    color: rgba(255, 255, 255, 0.9);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.next-steps {
    background: var(--light-color);
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.legal-page {
    background: #ffffff;
    padding: 4rem 2rem;
}

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

.container-legal h1 {
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.container-legal h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.container-legal h3 {
    color: var(--text-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.container-legal p {
    color: var(--text-light);
    line-height: 1.8;
}

.container-legal ul {
    margin-left: 2rem;
    list-style: disc;
}

.container-legal ul li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.container-legal a {
    color: var(--primary-color);
    text-decoration: underline;
}

.container-legal a:hover {
    color: var(--accent-color);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table th {
    background: var(--light-color);
    color: var(--dark-color);
    font-weight: 600;
}

.cookies-table td {
    color: var(--text-light);
}

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

    .hero-left, .hero-right {
        min-height: 50vh;
    }

    .container-split {
        flex-direction: column;
        gap: 2rem;
    }

    .container-split.reverse {
        flex-direction: column;
    }

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

    .process-grid, .values-grid, .testimonials-grid, .numbers-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-main {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-left, .split-content, .split-form {
        padding: 2rem;
    }

    section {
        padding: 3rem 0;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: flex-start;
    }

    .form-row {
        flex-direction: column;
    }

    .cta-benefits {
        flex-direction: column;
    }

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