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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a6fa5;
    --accent-color: #7c8a9e;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f4f7f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

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

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

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

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

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #1f4a61;
}

.intro-dual {
    display: flex;
}

.intro-left {
    flex: 1;
    padding: 80px 60px;
}

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

.intro-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.intro-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.services-section {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-split {
    display: flex;
    min-height: 350px;
}

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

.service-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 40px 50px;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-info p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
}

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

.btn-select {
    background: var(--secondary-color);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-select:hover {
    background: #3d5a8a;
}

.testimonials-offset {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonial-intro h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

.testimonials-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-card.offset {
    margin-left: 60px;
}

.testimonial-card p {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.author {
    font-size: 14px;
    color: var(--text-light);
    font-style: normal;
}

.approach-split {
    display: flex;
}

.approach-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.approach-content {
    flex: 1;
    padding: 80px 60px;
    background: var(--bg-white);
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.approach-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.link-inline {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    transition: color 0.3s;
}

.link-inline:hover {
    color: #1f4a61;
}

.cta-section-dual {
    display: flex;
    background: var(--bg-light);
}

.cta-left {
    flex: 1;
    padding: 80px 60px;
}

.cta-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-left p {
    font-size: 18px;
    color: var(--text-light);
}

.cta-right {
    flex: 1;
    padding: 80px 60px;
    background: white;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

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

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

.btn-submit:hover {
    background: #1f4a61;
}

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

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

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

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom .disclaimer {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 1000;
    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: 20px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-accept:hover {
    background: #1f4a61;
}

.btn-reject {
    background: #666;
    color: white;
}

.btn-reject:hover {
    background: #555;
}

.page-hero-split {
    display: flex;
    min-height: 400px;
}

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

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

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

.page-hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.story-section {
    padding: 80px 0;
    background: white;
}

.story-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.story-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.values-split {
    background: var(--bg-white);
}

.value-block {
    display: flex;
    min-height: 400px;
}

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

.value-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.value-content p {
    font-size: 18px;
    color: var(--text-light);
}

.value-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.team-section {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.team-intro {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.approach-detail-split {
    display: flex;
    background: white;
}

.approach-text {
    flex: 1;
    padding: 80px 60px;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.approach-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.approach-visual-block {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-simple {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-simple h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-simple p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #1f4a61;
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

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

.services-hero {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    background: white;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
}

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

.service-detail-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px;
    background: var(--bg-light);
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-detail-content h4 {
    font-size: 18px;
    margin: 24px 0 12px;
    color: var(--text-dark);
}

.service-detail-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
}

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

.btn-select-large {
    background: var(--secondary-color);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-large:hover {
    background: #3d5a8a;
}

.form-section-services {
    padding: 100px 0;
    background: var(--bg-white);
}

.form-section-services h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
}

.form-section-services p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-form-centered {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-hero {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-split {
    display: flex;
    min-height: 500px;
}

.contact-details {
    flex: 1;
    padding: 80px 60px;
    background: white;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.contact-block .note {
    font-size: 14px;
    font-style: italic;
    margin-top: 8px;
}

.contact-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.contact-note {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-note h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.contact-note p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.thanks-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.next-steps {
    background: white;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

.next-steps ol {
    margin-left: 20px;
}

.next-steps ol li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.legal-page {
    padding: 80px 0;
    background: white;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

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

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

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

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

.legal-page ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.8;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
}

.legal-page a:hover {
    color: #1f4a61;
}

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

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

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

.cookie-table td {
    font-size: 14px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hero-split,
    .intro-dual,
    .service-card-split,
    .approach-split,
    .cta-section-dual,
    .page-hero-split,
    .value-block,
    .approach-detail-split,
    .service-detail-split,
    .contact-info-split {
        flex-direction: column;
    }

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

    .hero-content h1,
    .page-hero-content h1,
    .services-hero h1,
    .contact-hero h1,
    .thanks-content h1 {
        font-size: 32px;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

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

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

    .testimonial-card.offset {
        margin-left: 0;
    }
}