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

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #1a3a66;
    --accent-color: #4a7bc8;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --background-light: #f8f9fb;
    --background-white: #ffffff;
    --border-color: #e0e4e8;
    --success-color: #2d8659;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--background-white);
}

.main-header {
    background: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

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

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

.ad-disclosure {
    background: var(--background-light);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.ad-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

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

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

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

.hero-description {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

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

.hero-right {
    flex: 1;
    background: var(--background-light);
    overflow: hidden;
}

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

.value-split {
    display: flex;
    align-items: stretch;
}

.split-image-left {
    flex: 1;
    background: var(--background-light);
    overflow: hidden;
}

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

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

.split-content-right h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.split-content-right p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.services-highlight {
    padding: 6rem 3rem;
    background: var(--background-light);
}

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

.services-intro h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    background: var(--background-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--background-light);
}

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

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

.service-info h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.services-cta-center {
    text-align: center;
    margin-top: 3rem;
}

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

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

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

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

.methodology-split {
    display: flex;
    align-items: stretch;
}

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

.split-content-left h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 50px;
}

.step-text h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

.split-image-right {
    flex: 1;
    background: var(--background-light);
    overflow: hidden;
}

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

.form-section {
    padding: 6rem 3rem;
    background: var(--background-white);
}

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

.form-left-text {
    flex: 1;
}

.form-left-text h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.form-left-text p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

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

.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;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

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

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

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

.disclaimer-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
}

.main-footer {
    background: var(--secondary-color);
    color: var(--background-white);
    padding: 4rem 3rem 2rem;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--background-white);
}

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

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: var(--background-white);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--background-white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: stretch;
}

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem 4rem 5rem;
    background: var(--background-white);
}

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

.hero-content-left p {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.hero-visual-right {
    flex: 1;
    background: var(--background-light);
    overflow: hidden;
}

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

.services-detailed {
    max-width: 1600px;
    margin: 0 auto;
}

.service-block-split {
    display: flex;
    align-items: stretch;
    margin-bottom: 0;
}

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

.service-detail-left {
    flex: 1;
    background: var(--background-light);
    overflow: hidden;
}

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

.service-detail-right {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--background-white);
}

.service-block-split.reverse .service-detail-left {
    padding: 5rem;
    background: var(--background-white);
}

.service-block-split.reverse .service-detail-right {
    background: var(--background-light);
    overflow: hidden;
}

.service-block-split.reverse .service-detail-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-right h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

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

.service-features li {
    font-size: 1rem;
    color: var(--text-medium);
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
}

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

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2rem;
}

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

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

.services-cta-section {
    padding: 5rem 3rem;
    background: var(--background-light);
}

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

.cta-content-centered h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

.cta-content-centered p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.about-hero-split {
    display: flex;
    align-items: stretch;
}

.about-text-section {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-section h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-text-section p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.about-image-section {
    flex: 1;
    background: var(--background-light);
    overflow: hidden;
}

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

.expertise-split {
    display: flex;
    align-items: stretch;
}

.expertise-left {
    flex: 1;
    background: var(--background-light);
    overflow: hidden;
}

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

.expertise-right {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--background-white);
}

.expertise-right h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.expertise-right p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

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

.expertise-list li {
    font-size: 1rem;
    color: var(--text-medium);
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
}

.expertise-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.approach-section {
    padding: 6rem 3rem;
    background: var(--background-light);
}

.approach-content-centered {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-content-centered h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

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

.approach-item {
    flex: 1 1 calc(50% - 1rem);
    background: var(--background-white);
    padding: 2.5rem;
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.values-split {
    display: flex;
    align-items: stretch;
}

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

.values-text-left h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.values-text-left p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.values-image-right {
    flex: 1;
    background: var(--background-light);
    overflow: hidden;
}

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

.about-cta-section {
    padding: 5rem 3rem;
    background: var(--background-white);
}

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

.cta-centered-content h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

.cta-centered-content p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.contact-hero {
    padding: 5rem 3rem;
    background: var(--background-light);
}

.contact-intro-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro-centered h1 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

.contact-intro-centered p {
    font-size: 1.15rem;
    color: var(--text-medium);
}

.contact-details-split {
    display: flex;
    align-items: stretch;
}

.contact-info-left {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    background: var(--background-white);
}

.contact-block h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-address,
.contact-schedule,
.contact-email-text {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

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

.contact-visual-right {
    flex: 1;
    background: var(--background-light);
    overflow: hidden;
}

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

.contact-additional-info {
    padding: 6rem 3rem;
    background: var(--background-light);
}

.info-content-centered {
    max-width: 1200px;
    margin: 0 auto;
}

.info-content-centered h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

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

.info-item {
    flex: 1;
    background: var(--background-white);
    padding: 2.5rem;
    border-radius: 8px;
}

.info-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 3rem;
}

.thanks-content-centered {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.thanks-content-centered h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.service-confirmation {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.thanks-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

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

.legal-page {
    padding: 5rem 3rem;
    background: var(--background-white);
}

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

.legal-container h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.legal-date {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.legal-container h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-container p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-container ul li {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
    .hero-split,
    .value-split,
    .methodology-split,
    .form-container-split,
    .page-hero-split,
    .service-block-split,
    .about-hero-split,
    .expertise-split,
    .values-split,
    .contact-details-split {
        flex-direction: column;
    }

    .service-block-split.reverse {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .approach-item,
    .info-item {
        flex: 1 1 100%;
    }

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

    .nav-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-split h1,
    .hero-content-left h1 {
        font-size: 2.2rem;
    }

    .split-content-right h2,
    .split-content-left h2 {
        font-size: 1.8rem;
    }
}