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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #2ecc71;
}

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);
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-main {
    display: flex;
    gap: 2rem;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-light);
}

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
}

.hero-content-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image-right {
    flex: 1;
    overflow: hidden;
    background-color: #95a5a6;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

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

.intro-offset {
    display: flex;
    padding: 5rem 3rem;
    gap: 4rem;
    align-items: center;
}

.intro-block-right {
    flex: 1.2;
    padding-left: 3rem;
}

.intro-block-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-block-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.intro-image-left {
    flex: 0.8;
    overflow: hidden;
    border-radius: 8px;
    background-color: #95a5a6;
}

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

.services-showcase {
    padding: 5rem 3rem;
    background-color: var(--bg-light);
}

.section-title-centered {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.services-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-large {
    display: flex;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.service-image {
    flex: 0.6;
    overflow: hidden;
    background-color: #95a5a6;
}

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

.service-info {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: auto;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem 0;
}

.btn-service-select {
    padding: 0.9rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.btn-service-select:hover {
    background-color: #1a252f;
    transform: scale(1.02);
}

.process-flow {
    padding: 5rem 3rem;
}

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

.process-text {
    flex: 1;
}

.process-text h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 60px;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.process-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    background-color: #95a5a6;
}

.process-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.form-container-centered {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.form-container-centered h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-intro {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group input[readonly] {
    background-color: var(--bg-light);
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.trust-indicators {
    padding: 5rem 3rem;
}

.trust-content-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content-wide h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.trust-item {
    flex: 1;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

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

.trust-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.trust-item a:hover {
    text-decoration: underline;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 3rem 3rem 2rem 3rem;
    background-color: var(--primary-color);
    color: white;
    gap: 3rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.reference-small {
    font-size: 0.85rem;
    line-height: 1.5;
}

.disclaimer-footer {
    padding: 2rem 3rem;
    background-color: #1a252f;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem 3rem;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

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

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

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

.cookie-content a {
    color: var(--secondary-color);
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.page-hero-minimal {
    padding: 4rem 3rem 2rem 3rem;
    text-align: center;
    background-color: var(--bg-light);
}

.page-hero-minimal h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
}

.about-story-flow {
    padding: 3rem 0;
}

.story-block,
.story-block-reverse {
    display: flex;
    gap: 4rem;
    padding: 3rem;
    align-items: center;
}

.story-block-reverse {
    flex-direction: row-reverse;
}

.story-image-left,
.story-image-right {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    background-color: #95a5a6;
}

.story-image-left img,
.story-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-text-right,
.story-text-left {
    flex: 1;
}

.story-text-right h2,
.story-text-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-text-right p,
.story-text-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.story-text-right a,
.story-text-left a {
    color: var(--secondary-color);
    text-decoration: none;
}

.story-text-right a:hover,
.story-text-left a:hover {
    text-decoration: underline;
}

.values-section {
    padding: 4rem 3rem;
    background-color: var(--bg-light);
}

.values-asymmetric {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    padding: 2.5rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.team-approach {
    padding: 4rem 3rem;
}

.team-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.team-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.services-detailed {
    padding: 3rem 0;
}

.service-detail-card,
.service-detail-card-reverse {
    display: flex;
    gap: 3rem;
    padding: 3rem;
    align-items: center;
}

.service-detail-card-reverse {
    flex-direction: row-reverse;
    background-color: var(--bg-light);
}

.service-detail-left {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    background-color: #95a5a6;
}

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

.service-detail-right {
    flex: 1;
}

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

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

.service-detail-right h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.service-detail-right ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-detail-right li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

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

.contact-layout {
    display: flex;
    gap: 4rem;
    padding: 3rem;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 2rem;
}

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

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

.contact-note {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    margin-top: 2rem;
}

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

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

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

.contact-additional {
    padding: 4rem 3rem;
    background-color: var(--bg-light);
}

.contact-additional h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.help-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.help-card {
    flex: 1;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.help-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.help-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-container {
    padding: 5rem 3rem;
    min-height: 600px;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-confirmation {
    margin: 2rem 0;
}

.selected-service-box {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    display: inline-block;
    text-align: left;
}

.selected-service-box p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.thanks-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.step {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.step-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 40px;
}

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

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.2s, opacity 0.3s;
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

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

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

.legal-intro {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.legal-page p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.legal-page ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-page li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-main {
        flex-direction: column;
        gap: 0.5rem;
    }

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

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

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

    .intro-offset {
        flex-direction: column;
        padding: 2rem;
    }

    .intro-block-right {
        padding-left: 0;
    }

    .services-grid-asymmetric {
        gap: 2rem;
    }

    .service-card-large {
        flex-direction: column;
    }

    .process-content-split {
        flex-direction: column;
    }

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

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

    .story-block,
    .story-block-reverse {
        flex-direction: column;
        padding: 2rem;
    }

    .values-asymmetric {
        flex-direction: column;
    }

    .service-detail-card,
    .service-detail-card-reverse {
        flex-direction: column;
        padding: 2rem;
    }

    .contact-layout {
        flex-direction: column;
        padding: 2rem;
    }

    .help-grid {
        flex-direction: column;
    }

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

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