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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #e8927c;
    --accent-color: #d4a574;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

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

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

.navbar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-dark);
    font-size: 16px;
    transition: color 0.3s;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.3s;
}

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

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

.hero-left {
    display: flex;
    align-items: center;
    padding: 60px 50px;
    background: var(--bg-light);
}

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

.hero-content h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 35px;
}

.hero-right {
    background-size: cover;
    background-position: center;
    position: relative;
}

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

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 38px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.cta-text {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 17px;
    display: inline-block;
    position: relative;
    transition: transform 0.3s;
}

.cta-text:hover {
    transform: translateX(5px);
}

.insight-block {
    padding: 90px 20px;
    background: var(--bg-white);
}

.insight-block h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

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

.split-image,
.split-content {
    flex: 1;
}

.split-image {
    position: relative;
    min-height: 500px;
}

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

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

.split-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.benefit-list {
    list-style: none;
    margin-bottom: 35px;
}

.benefit-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
    color: var(--text-dark);
}

.benefit-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.trust-signals {
    padding: 80px 20px;
    background: var(--primary-color);
    color: white;
}

.stats-grid {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    min-width: 180px;
}

.stat-card h3 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent-color);
}

.stat-card p {
    font-size: 17px;
    opacity: 0.9;
}

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

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.service-card-split {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 40px 35px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.service-header {
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.service-card-split p {
    flex-grow: 1;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.select-service:hover {
    background: #0f2a3d;
}

.testimonial-split {
    display: flex;
    min-height: 450px;
}

.testimonial-content,
.testimonial-visual {
    flex: 1;
}

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

.testimonial-content blockquote {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.testimonial-content cite {
    font-size: 16px;
    color: var(--text-light);
    font-style: normal;
}

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

.approach-section {
    padding: 90px 20px;
    background: var(--bg-white);
}

.approach-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.approach-section p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.cta-sticky-trigger {
    padding: 80px 20px;
    background: var(--bg-light);
}

.cta-box-split {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-box-content {
    flex: 1;
}

.cta-box-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.cta-box-action {
    flex-shrink: 0;
}

.btn-large {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 18px 45px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-large:hover {
    transform: scale(1.05);
}

.final-insight {
    padding: 90px 20px;
    background: var(--bg-white);
}

.final-insight h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.final-insight p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-light);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 50px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-light);
}

.close-modal:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    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);
}

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

.btn-submit:hover {
    background: #0f2a3d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    z-index: 1500;
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

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

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

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

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

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

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: stretch;
}

.page-hero {
    padding: 90px 20px;
    background: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.story-section {
    padding: 90px 20px;
    background: var(--bg-white);
}

.story-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.values-split {
    display: flex;
}

.value-item {
    margin-bottom: 40px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

.philosophy-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 700;
}

.philosophy-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.philosophy-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 40px 35px;
    border-radius: 8px;
}

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

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

.commitment-section {
    padding: 90px 20px;
    background: var(--bg-white);
}

.commitment-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.commitment-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

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

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 38px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 36px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.services-detailed {
    padding: 60px 20px;
}

.service-detail-split {
    display: flex;
    margin-bottom: 80px;
    align-items: stretch;
}

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

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

.service-detail-image {
    flex: 1;
    min-height: 450px;
}

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

.service-label {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.service-detail-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    margin-bottom: 35px;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-dark);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.services-faq {
    padding: 80px 20px;
    background: var(--bg-light);
}

.services-faq h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-item {
    margin-bottom: 35px;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.cta-services {
    padding: 80px 20px;
    background: var(--bg-white);
    text-align: center;
}

.cta-services h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

.contact-info {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-white);
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 700;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 700;
}

.info-block p,
.info-block a {
    color: var(--text-light);
    line-height: 1.7;
}

.info-block a:hover {
    color: var(--secondary-color);
}

.contact-visual {
    flex: 1;
}

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

.thanks-hero {
    padding: 120px 20px;
    background: var(--bg-light);
    text-align: center;
}

.thanks-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.thanks-details {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    display: inline-block;
}

.thanks-details p {
    margin: 0;
}

.next-steps {
    padding: 90px 20px;
    background: var(--bg-white);
}

.next-steps h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 700;
}

.steps-grid {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

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

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.while-you-wait {
    padding: 80px 20px;
    background: var(--bg-light);
}

.while-you-wait h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.while-you-wait > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.resource-links {
    display: flex;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 35px 30px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

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

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-page .updated {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

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

.legal-page li {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

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

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

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split,
    .split-section,
    .testimonial-split,
    .page-hero-split,
    .values-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-right,
    .split-image,
    .testimonial-visual,
    .service-detail-image {
        min-height: 350px;
    }

    .hero-left,
    .split-content,
    .testimonial-content,
    .service-detail-content,
    .contact-info {
        padding: 50px 30px;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .cta-box-split {
        flex-direction: column;
        text-align: center;
    }

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

    .stats-grid,
    .philosophy-grid,
    .steps-grid {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .insight-block h2,
    .approach-section h2,
    .final-insight h2 {
        font-size: 28px;
    }

    .services-preview h2,
    .philosophy-section h2 {
        font-size: 32px;
    }

    .services-grid-split {
        flex-direction: column;
    }

    .modal-content {
        padding: 30px 25px;
    }
}
