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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: #ffffff;
    border-bottom: 1px solid #e8eff3;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5c7f;
}

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

.nav-right a {
    font-size: 0.95rem;
    color: #5a6c7d;
    font-weight: 500;
}

.nav-right a.active {
    color: #2d5c7f;
}

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

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    padding: 4rem;
    background: #f9fbfc;
}

.hero-content {
    max-width: 520px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #1a2a3a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-right {
    background: #2d5c7f;
}

.hero-svg {
    width: 100%;
    height: 100%;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2d5c7f;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #2d5c7f;
    border: 2px solid #2d5c7f;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #2d5c7f;
    color: #ffffff;
    opacity: 1;
}

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

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

.trust-right {
    padding: 5rem 4rem;
}

.trust-content h2 {
    font-size: 2.2rem;
    color: #1a2a3a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.trust-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.link-subtle {
    color: #2d5c7f;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.link-subtle:hover {
    border-bottom-color: #2d5c7f;
    opacity: 1;
}

.stats-box {
    background: #f4f7f9;
    padding: 4rem 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2d5c7f;
}

.stat-label {
    font-size: 0.95rem;
    color: #5a6c7d;
    margin-top: 0.5rem;
}

.services-intro {
    padding: 5rem 3rem;
    background: #ffffff;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    color: #1a2a3a;
    margin-bottom: 1rem;
}

.section-header-centered p {
    font-size: 1.1rem;
    color: #5a6c7d;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #f9fbfc;
    padding: 2.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1a2a3a;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d5c7f;
    margin-bottom: 1.5rem;
    display: block;
}

.btn-service {
    padding: 0.9rem 2rem;
    background: #2d5c7f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 0.95rem;
}

.btn-service:hover {
    background: #1f4158;
}

.approach-split {
    display: flex;
}

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

.approach-left {
    background: #f4f7f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-svg {
    width: 100%;
    height: 100%;
    max-width: 600px;
}

.approach-right {
    padding: 5rem 4rem;
}

.approach-right h2 {
    font-size: 2rem;
    color: #1a2a3a;
    margin-bottom: 2rem;
}

.approach-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.approach-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #5a6c7d;
}

.approach-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5c7f;
    font-weight: 700;
}

.testimonial-section {
    padding: 5rem 3rem;
    background: #2d5c7f;
}

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

.testimonial-content blockquote {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-size: 1rem;
    color: #b8d4e3;
    font-style: normal;
}

.process-split {
    display: flex;
}

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

.process-right {
    padding: 5rem 4rem;
}

.process-right h2 {
    font-size: 2rem;
    color: #1a2a3a;
    margin-bottom: 3rem;
}

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

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

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5c7f;
    min-width: 60px;
}

.step-content h4 {
    font-size: 1.2rem;
    color: #1a2a3a;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.process-left {
    background: #f9fbfc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-highlight {
    padding: 3rem;
    background: #ffffff;
    margin: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.process-highlight p {
    font-size: 1.1rem;
    color: #2d5c7f;
    font-weight: 600;
    line-height: 1.8;
}

.cta-form-section {
    padding: 5rem 3rem;
    background: #f4f7f9;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.2rem;
    color: #1a2a3a;
    margin-bottom: 1rem;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e8eff3;
    border-radius: 6px;
    font-size: 1rem;
    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: #2d5c7f;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: #2d5c7f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.footer-split {
    display: flex;
    background: #1a2a3a;
    color: #ffffff;
    padding: 4rem 3rem;
}

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

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #b8c5d0;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
    justify-content: flex-end;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.footer-col a {
    color: #b8c5d0;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.sticky-cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2d5c7f;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(45, 92, 127, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(45, 92, 127, 0.5);
    opacity: 1;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2a3a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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: 2rem;
}

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

.cookie-content a {
    color: #8ab8d1;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.btn-accept {
    background: #2d5c7f;
    color: #ffffff;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #5a6c7d;
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.page-hero-split {
    display: flex;
    padding: 4rem 3rem;
    background: #f9fbfc;
    align-items: center;
}

.page-hero-left,
.page-hero-right {
    flex: 1;
}

.page-hero-left h1 {
    font-size: 3rem;
    color: #1a2a3a;
    line-height: 1.2;
}

.page-hero-right p {
    font-size: 1.2rem;
    color: #5a6c7d;
    padding-left: 3rem;
}

.about-story-split {
    display: flex;
}

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

.story-left {
    background: #f4f7f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-svg {
    width: 100%;
    height: 100%;
    max-width: 500px;
}

.story-right {
    padding: 5rem 4rem;
}

.story-right h2 {
    font-size: 2rem;
    color: #1a2a3a;
    margin-bottom: 1.5rem;
}

.story-right p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-section {
    padding: 5rem 3rem;
    background: #ffffff;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 2rem;
    background: #f9fbfc;
    border-left: 4px solid #2d5c7f;
}

.value-card h3 {
    font-size: 1.3rem;
    color: #1a2a3a;
    margin-bottom: 0.8rem;
}

.value-card p {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.team-split {
    display: flex;
}

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

.team-right {
    padding: 5rem 4rem;
}

.team-right h2 {
    font-size: 2rem;
    color: #1a2a3a;
    margin-bottom: 1.5rem;
}

.team-right p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.team-left {
    background: #f4f7f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-highlight {
    padding: 3rem;
    background: #ffffff;
    margin: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.credentials-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    color: #2d5c7f;
    font-weight: 600;
}

.credentials-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5c7f;
}

.philosophy-split {
    display: flex;
}

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

.philosophy-left {
    background: #2d5c7f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-box {
    padding: 3rem;
    max-width: 450px;
}

.philosophy-box h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.philosophy-box p {
    font-size: 1.05rem;
    color: #e8eff3;
    line-height: 1.8;
}

.philosophy-right {
    padding: 5rem 4rem;
}

.philosophy-right h2 {
    font-size: 2rem;
    color: #1a2a3a;
    margin-bottom: 1.5rem;
}

.philosophy-right p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-about {
    padding: 5rem 3rem;
    background: #f4f7f9;
}

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

.cta-about-content h2 {
    font-size: 2.5rem;
    color: #1a2a3a;
    margin-bottom: 1rem;
}

.cta-about-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

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

.service-detail-card {
    display: flex;
    margin-bottom: 4rem;
    background: #f9fbfc;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: #ffffff;
}

.service-detail-right {
    padding: 3rem;
}

.service-detail-right h2 {
    font-size: 2rem;
    color: #1a2a3a;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5c7f;
    margin-bottom: 1.5rem;
}

.service-detail-right p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 0.95rem;
    color: #5a6c7d;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d5c7f;
    font-size: 1.5rem;
}

.pricing-info {
    padding: 4rem 3rem;
    background: #f4f7f9;
}

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

.pricing-info-content h2 {
    font-size: 2rem;
    color: #1a2a3a;
    margin-bottom: 1.5rem;
}

.pricing-info-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.form-section-services {
    padding: 5rem 3rem;
    background: #ffffff;
}

.contact-split {
    display: flex;
    padding: 3rem;
}

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

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

.contact-left h2 {
    font-size: 2.2rem;
    color: #1a2a3a;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
}

.contact-info-block {
    margin-bottom: 2.5rem;
}

.contact-info-block h3 {
    font-size: 1.1rem;
    color: #2d5c7f;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-info-block p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.contact-info-block a {
    color: #2d5c7f;
    font-weight: 600;
}

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
    color: #7a8c9d;
    margin-top: 0.5rem;
}

.contact-right {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fbfc;
}

.contact-map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-svg {
    width: 100%;
    height: 100%;
}

.contact-approach {
    padding: 5rem 3rem;
    background: #f4f7f9;
}

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

.approach-content h2 {
    font-size: 2rem;
    color: #1a2a3a;
    text-align: center;
    margin-bottom: 3rem;
}

.approach-steps-horizontal {
    display: flex;
    gap: 3rem;
}

.approach-step {
    flex: 1;
    text-align: center;
}

.step-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #2d5c7f;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 1.5rem;
}

.approach-step h4 {
    font-size: 1.2rem;
    color: #1a2a3a;
    margin-bottom: 0.8rem;
}

.approach-step p {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.faq-section {
    padding: 5rem 3rem;
    background: #ffffff;
}

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

.faq-content h2 {
    font-size: 2rem;
    color: #1a2a3a;
    margin-bottom: 3rem;
    text-align: center;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    color: #1a2a3a;
    margin-bottom: 0.8rem;
}

.faq-item p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.cta-contact {
    padding: 5rem 3rem;
    background: #2d5c7f;
}

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

.cta-contact-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-contact-content p {
    font-size: 1.1rem;
    color: #e8eff3;
    margin-bottom: 2rem;
}

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

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #1a2a3a;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.thanks-service-info {
    background: #f9fbfc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    font-size: 1rem;
    color: #2d5c7f;
    font-weight: 600;
}

.thanks-next-steps {
    background: #f4f7f9;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.5rem;
    color: #1a2a3a;
    margin-bottom: 1rem;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    color: #5a6c7d;
}

.thanks-next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5c7f;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.thanks-info-section {
    padding: 4rem 3rem;
    background: #f9fbfc;
}

.thanks-info-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-info-content h2 {
    font-size: 1.8rem;
    color: #1a2a3a;
    margin-bottom: 1rem;
}

.thanks-info-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.email-link {
    color: #2d5c7f;
    font-weight: 600;
    font-size: 1.2rem;
}

.legal-page {
    padding: 4rem 3rem;
    background: #f9fbfc;
    min-height: 60vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #1a2a3a;
    margin-bottom: 0.5rem;
}

.legal-updated {
    font-size: 0.9rem;
    color: #7a8c9d;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.6rem;
    color: #1a2a3a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.2rem;
    color: #2d5c7f;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-content li {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 0.5rem;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e8eff3;
}

@media (max-width: 1024px) {
    .hero-split,
    .trust-split,
    .approach-split,
    .process-split,
    .about-story-split,
    .team-split,
    .philosophy-split,
    .contact-split {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .approach-steps-horizontal {
        flex-direction: column;
    }

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

    .footer-links {
        justify-content: flex-start;
    }

    .service-detail-card {
        flex-direction: column !important;
    }

    .page-hero-right p {
        padding-left: 0;
        margin-top: 1.5rem;
    }
}

@media (max-width: 768px) {
    .split-nav {
        padding: 1rem 1.5rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

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

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

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .legal-content {
        padding: 2rem;
    }

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