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

:root {
    --primary: #1a4d7a;
    --primary-dark: #0f3557;
    --accent: #d4925f;
    --text: #2d2d2d;
    --text-light: #5a5a5a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border: #e0e0e0;
    --success: #28a745;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent);
}

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px var(--shadow);
}

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

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

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

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px var(--shadow);
    display: none;
}

.cookie-banner.visible {
    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;
    flex: 1;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

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

.hero-left p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary,
.cta-secondary,
.cta-large,
.cta-inline {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary {
    background: var(--primary);
    color: var(--bg-white);
}

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

.cta-secondary {
    background: var(--accent);
    color: var(--bg-white);
}

.cta-secondary:hover {
    background: #c07d46;
}

.cta-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    background: var(--primary);
    color: var(--bg-white);
}

.cta-large:hover {
    background: var(--primary-dark);
}

.cta-inline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.8rem 1.5rem;
}

.cta-inline:hover {
    background: var(--primary);
    color: var(--bg-white);
}

.trust-indicators {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

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

.stats-split {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.stat-block {
    flex: 1;
    text-align: center;
}

.stat-block h3 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-block p {
    color: var(--text-light);
}

.value-prop-split {
    display: flex;
}

.split-content-left,
.split-content-right {
    flex: 1;
}

.split-content-left {
    overflow: hidden;
}

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

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

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

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

.testimonial-block {
    padding: 5rem 2rem;
    background: var(--primary);
    color: var(--bg-white);
}

.testimonial-block blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.testimonial-block cite {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
    font-style: normal;
}

.services-pricing-split {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

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

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

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px var(--shadow);
    display: flex;
    flex-direction: column;
}

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

.service-card p {
    flex: 1;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.btn-select-service {
    background: var(--primary);
    color: var(--bg-white);
    border: none;
    padding: 0.9rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--primary-dark);
}

.form-section-split {
    display: flex;
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.form-left-content,
.form-right-content {
    flex: 1;
    padding: 2rem;
}

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

.form-left-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: var(--text-light);
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

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

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: var(--bg-white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

.why-different-split {
    display: flex;
}

.split-why-left {
    flex: 1;
    padding: 5rem 4rem;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-why-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.split-why-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.split-why-right {
    flex: 1;
    overflow: hidden;
}

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

.final-cta-block {
    padding: 6rem 2rem;
    background: var(--primary);
    text-align: center;
    color: var(--bg-white);
}

.final-cta-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta-block p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

.about-story-split,
.team-split,
.timeline-split {
    display: flex;
}

.story-left,
.story-right,
.team-content-left,
.team-content-right,
.timeline-left,
.timeline-right {
    flex: 1;
}

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

.story-right,
.team-content-right,
.timeline-left {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.approach-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

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

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

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

.principle-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.values-block {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

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

.values-list {
    list-style: none;
    margin: 2rem 0;
}

.values-list li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-light);
}

.values-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.cta-about,
.services-cta,
.contact-cta {
    padding: 5rem 2rem;
    background: var(--primary);
    text-align: center;
    color: var(--bg-white);
}

.cta-about h2,
.services-cta h2,
.contact-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-about p,
.services-cta p,
.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.services-intro-split {
    display: flex;
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.intro-left,
.intro-right {
    flex: 1;
}

.intro-left {
    padding: 2rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

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

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-block {
    display: flex;
    margin-bottom: 5rem;
    gap: 3rem;
}

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

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

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

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

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

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

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

.service-includes li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: var(--text-light);
}

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

.faq-block {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.faq-item {
    margin-bottom: 2.5rem;
}

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

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

.contact-split {
    display: flex;
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.contact-info-left,
.contact-map-right {
    flex: 1;
}

.contact-info-left {
    padding: 2rem 4rem 2rem 2rem;
}

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

.contact-detail {
    margin-bottom: 2.5rem;
}

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

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

.contact-detail p.note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-detail a {
    color: var(--primary);
    font-weight: 600;
}

.contact-map-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.contact-expect {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

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

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

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

.expect-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-hero {
    padding: 5rem 2rem;
    background: var(--success);
    text-align: center;
    color: var(--bg-white);
}

.thanks-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.thanks-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.thanks-content {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.thanks-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.thanks-left,
.thanks-right {
    flex: 1;
}

.thanks-left h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.thanks-step {
    margin-bottom: 2.5rem;
}

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

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

.thanks-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.thanks-box p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.thanks-box p:last-child {
    margin-bottom: 0;
}

.thanks-explore {
    padding: 5rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.thanks-explore h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.thanks-explore p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--bg-white);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

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

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

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

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

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

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

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

.legal-page ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-page ul li {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-page a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--accent);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table thead {
    background: var(--bg-light);
}

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

.cookie-table th {
    font-weight: 600;
    color: var(--primary);
}

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

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    .hero-split,
    .value-prop-split,
    .form-section-split,
    .why-different-split,
    .about-story-split,
    .team-split,
    .timeline-split,
    .services-intro-split,
    .service-detail-block,
    .contact-split,
    .thanks-split {
        flex-direction: column;
    }

    .hero-left,
    .split-content-right,
    .form-left-content,
    .form-right-content,
    .split-why-left,
    .story-right,
    .team-content-right,
    .timeline-left,
    .intro-left,
    .contact-info-left {
        padding: 3rem 2rem;
    }

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

    .stats-split,
    .principles-grid,
    .expect-grid {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-actions {
        width: 100%;
        justify-content: stretch;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }
}