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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --accent-color: #f59e0b;
}

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

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

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

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

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

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
}

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

.nav-links a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.nav-ad-label {
    font-size: 12px;
    color: var(--text-light);
    padding: 4px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.hero-split {
    display: flex;
    align-items: stretch;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

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

.hero-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.6;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

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

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

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

.btn-primary-inverted:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.intro-section {
    background-color: var(--bg-white);
    padding: 80px 24px;
}

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

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

.intro-text p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
}

.services-preview-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
}

.services-preview-split.reverse {
    flex-direction: row-reverse;
}

.service-image-left,
.service-image-right {
    flex: 1;
    background-color: var(--bg-light);
    overflow: hidden;
}

.service-image-left img,
.service-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.service-content-right,
.service-content-left {
    flex: 1;
    padding: 60px;
}

.service-content-right h3,
.service-content-left h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-content-right p,
.service-content-left p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 24px 0;
}

.cta-block-center {
    background-color: var(--primary-color);
    padding: 100px 24px;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.methodology-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
}

.method-content-left {
    flex: 1;
    padding: 60px;
    background-color: var(--bg-light);
}

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

.method-content-left p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.method-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.form-intro {
    margin-bottom: 40px;
    text-align: center;
}

.form-intro h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 16px;
    color: var(--text-medium);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    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-group textarea {
    resize: vertical;
}

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

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

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

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

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

.footer-links {
    list-style: none;
}

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

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

.footer-links a:hover {
    color: var(--bg-white);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 24px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: transform 0.3s ease;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

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

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

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

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

.btn-cookie.reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

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

.page-header-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 400px;
}

.header-content-left {
    flex: 1;
    padding: 60px;
    background-color: var(--bg-light);
}

.header-content-left h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.lead-text {
    font-size: 19px;
    color: var(--text-medium);
    line-height: 1.7;
}

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

.header-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.story-section {
    padding: 80px 24px;
    background-color: var(--bg-white);
}

.story-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.story-wrapper h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.story-wrapper p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
}

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

.value-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.value-content-right {
    flex: 1;
    padding: 60px;
    background-color: var(--bg-light);
}

.value-content-right h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text-dark);
}

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

.value-list li {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.value-list strong {
    color: var(--text-dark);
}

.team-section {
    padding: 80px 24px;
    background-color: var(--bg-white);
}

.team-intro {
    max-width: 900px;
    margin: 0 auto;
}

.team-intro h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.team-intro p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.8;
}

.approach-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
}

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

.approach-content-left {
    flex: 1;
    padding: 60px;
}

.approach-content-left h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.approach-content-left p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.approach-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

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

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

.header-content-center h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-detail-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
}

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

.service-detail-split .service-image-left,
.service-detail-split .service-image-right {
    flex: 1;
    background-color: var(--bg-light);
    overflow: hidden;
}

.service-detail-split .service-image-left img,
.service-detail-split .service-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.service-detail-split .service-content-right,
.service-detail-split .service-content-left {
    flex: 1;
    padding: 60px;
    background-color: var(--bg-white);
}

.service-detail-split .service-content-right h2,
.service-detail-split .service-content-left h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-detail-split .service-content-right p,
.service-detail-split .service-content-left p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 28px 0;
}

.contact-split-section {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

.contact-info-left {
    flex: 1;
    padding: 60px;
    background-color: var(--bg-light);
}

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

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

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

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

.contact-form-right {
    flex: 1;
    padding: 60px;
    background-color: var(--bg-white);
}

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

.thanks-section {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background-color: var(--bg-light);
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.thanks-icon {
    margin-bottom: 24px;
}

.thanks-icon svg {
    color: var(--success-color);
}

.thanks-container h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-info {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    margin: 24px 0;
    font-size: 16px;
    color: var(--text-medium);
}

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

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

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

.legal-container h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-intro {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

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

.legal-container ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

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

.legal-date {
    margin-top: 40px;
    font-style: italic;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hero-split,
    .services-preview-split,
    .methodology-split,
    .page-header-split,
    .values-split,
    .approach-split,
    .service-detail-split,
    .contact-split-section {
        flex-direction: column;
    }

    .services-preview-split.reverse,
    .approach-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-content-left,
    .service-content-right,
    .service-content-left,
    .method-content-left,
    .header-content-left,
    .value-content-right,
    .approach-content-left,
    .contact-info-left,
    .contact-form-right {
        padding: 40px 24px;
    }

    .hero-content-left h1,
    .header-content-left h1,
    .header-content-center h1,
    .thanks-container h1,
    .legal-container h1 {
        font-size: 32px;
    }

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

    .nav-links {
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
