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

:root {
    --primary-color: #1a4d8f;
    --secondary-color: #2e6ab3;
    --accent-color: #e8a445;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
}

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

.ad-disclosure {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #fbbf24;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.header-right {
    display: flex;
    gap: 32px;
}

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

.header-right a:hover {
    color: var(--primary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

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

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

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #d1d5db;
}

.hero-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;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.intro-asymmetric {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.intro-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text-block {
    flex: 1.2;
}

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

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

.intro-image-offset {
    flex: 1;
    background-color: #e5e7eb;
}

.intro-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-split-grid {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.services-header-full {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.services-header-full h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.services-header-full p {
    font-size: 18px;
    color: var(--text-light);
}

.service-card-split {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.service-card-image {
    flex: 1;
    background-color: #d1d5db;
}

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

.service-card-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-card-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.btn-select-service {
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 15px;
}

.btn-select-service:hover {
    background-color: #d49435;
}

.form-section-split {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.form-section-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 80px;
}

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

.form-container-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.form-container-left p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.form-container-right {
    flex: 1;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background-color: var(--bg-white);
}

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

.btn-submit {
    width: 100%;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
}

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

.trust-section {
    padding: 80px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 60px;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.trust-item {
    flex: 1;
}

.trust-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 16px;
    opacity: 0.9;
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: #fef3c7;
}

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

.disclaimer-content h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.disclaimer-content p {
    font-size: 14px;
    color: #78350f;
    line-height: 1.7;
}

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

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 24px 40px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.btn-cookie {
    padding: 10px 24px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-cookie-secondary {
    padding: 10px 24px;
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.page-hero-split {
    padding: 100px 40px 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.page-hero-content p {
    font-size: 20px;
    color: var(--text-light);
}

.about-intro-split {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.about-intro-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    align-items: center;
}

.about-split-left {
    flex: 1;
    background-color: #e5e7eb;
}

.about-split-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-split-right {
    flex: 1;
}

.about-split-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-split-right p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.philosophy-section {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

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

.philosophy-content h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.philosophy-card {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
}

.philosophy-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.philosophy-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.team-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.team-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.team-header p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.team-image {
    flex: 1;
    background-color: #e5e7eb;
}

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

.team-values {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.value-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-section-centered {
    padding: 100px 40px;
    background-color: var(--primary-color);
    text-align: center;
}

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

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

.cta-content p {
    font-size: 18px;
    color: var(--bg-white);
    opacity: 0.9;
    margin-bottom: 32px;
}

.services-detailed {
    padding: 60px 40px;
    background-color: var(--bg-white);
}

.service-detail-split {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-detail-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.feature-item {
    padding: 8px 16px;
    background-color: var(--bg-light);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-dark);
}

.service-pricing-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

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

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-detail-image {
    flex: 1;
    background-color: #e5e7eb;
}

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

.contact-split-section {
    padding: 80px 40px;
    background-color: var(--bg-white);
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 80px;
}

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

.contact-info-side h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info-side > p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.contact-detail-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-note {
    margin-top: 32px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.contact-note p {
    font-size: 14px;
    color: var(--text-light);
}

.contact-form-side {
    flex: 1;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-confirmation {
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 16px;
    color: var(--text-dark);
}

.thanks-next-steps {
    margin-bottom: 40px;
}

.thanks-next-steps h3 {
    font-size: 24px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.next-steps-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.step-item {
    flex: 1;
    max-width: 200px;
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

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

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content p,
.legal-content ul,
.legal-content ol {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content strong {
    color: var(--text-dark);
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

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

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

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

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

@media (max-width: 768px) {
    .hero-split,
    .intro-offset,
    .service-card-split,
    .form-section-split,
    .about-intro-split,
    .team-split-layout,
    .service-detail-split,
    .contact-split-section {
        flex-direction: column;
    }

    .service-card-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .header-split {
        flex-direction: column;
        gap: 20px;
    }

    .header-right {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .trust-grid,
    .next-steps-grid {
        flex-direction: column;
    }

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

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