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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c6ba8;
    --accent-color: #e67e22;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.35rem;
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-medium);
    font-size: 1.05rem;
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

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

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

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

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

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    padding: 1rem 2rem;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 0.75rem 0;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: center;
}

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

.hero-left {
    padding: 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hero-content {
    max-width: 600px;
    color: var(--bg-white);
}

.hero-content h1 {
    color: var(--bg-white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.hero-right {
    background: var(--bg-light);
    padding: 2rem;
}

.hero-right img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
}

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

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

.trust-left {
    padding: 4rem 3rem;
}

.trust-content {
    max-width: 550px;
}

.trust-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--bg-white);
}

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

.cta-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--bg-white);
}

.cta-text {
    font-weight: 600;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.problem-amplify {
    padding: 5rem 0;
    background: var(--bg-light);
}

.problem-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.problem-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.insight-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

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

.insight-left {
    padding: 3rem;
}

.insight-content {
    max-width: 600px;
}

.insight-right img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

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

.benefits-split-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-large {
    flex: 2;
    min-width: 300px;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.benefit-large img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.benefit-content {
    padding: 2rem;
}

.benefit-small {
    flex: 1;
    min-width: 250px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.benefit-small h3 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.benefit-small p {
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-split {
    display: flex;
    background: var(--bg-light);
}

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

.testimonial-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.testimonial-text {
    max-width: 550px;
}

.testimonial-text blockquote {
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.testimonial-text cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 1rem;
}

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

.services-preview {
    padding: 5rem 0;
    background: var(--bg-white);
}

.services-split-layout {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-split {
    display: flex;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.service-content {
    flex: 1.2;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-image {
    flex: 1;
}

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

.price {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 1.5rem;
}

.urgency-split {
    display: flex;
    padding: 5rem 0;
    background: var(--bg-light);
}

.urgency-left, .urgency-right {
    flex: 1;
    padding: 3rem;
}

.urgency-list {
    list-style: none;
    padding-left: 0;
}

.urgency-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.urgency-list li:before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.urgency-cta-box {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    text-align: center;
}

.urgency-cta-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.form-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.trust-indicators {
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.trust-icon {
    color: var(--success-color);
    font-size: 1.25rem;
    font-weight: 700;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    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: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.final-cta-split {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
    color: var(--bg-white);
}

.final-cta-content h2,
.final-cta-content p {
    color: var(--bg-white);
}

.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 0 1rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

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

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

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

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
}

.sticky-cta-btn {
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-hover);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #d35400;
    transform: translateY(-3px);
    color: var(--bg-white);
}

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

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

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

.cookie-content p {
    margin: 0;
    color: var(--bg-white);
    flex: 1;
}

.cookie-content a {
    color: var(--accent-color);
}

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

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

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

.btn-accept:hover {
    background: #229954;
}

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

.btn-reject:hover {
    background: var(--bg-white);
    color: var(--text-dark);
}

.page-hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    text-align: center;
}

.page-hero h1 {
    color: var(--bg-white);
}

.page-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
}

.about-split {
    display: flex;
    padding: 5rem 0;
}

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

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

.about-right {
    padding: 3rem;
    display: flex;
    align-items: center;
}

.philosophy-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.philosophy-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

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

.philosophy-card h3 {
    color: var(--primary-color);
}

.team-split {
    display: flex;
    background: var(--bg-white);
}

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

.team-content {
    padding: 4rem;
    display: flex;
    align-items: center;
}

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

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

.values-list {
    margin-top: 3rem;
}

.value-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.value-item h3 {
    color: var(--primary-color);
}

.approach-split {
    display: flex;
    padding: 5rem 0;
}

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

.approach-left {
    padding: 3rem;
}

.approach-steps {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

.approach-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.approach-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--accent-color);
    color: var(--bg-white);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

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

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: var(--bg-white);
}

.cta-section h2,
.cta-section p {
    color: var(--bg-white);
}

.services-detail {
    padding: 3rem 0;
}

.service-detail-split {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.price-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    display: inline-block;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price-large {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--accent-color);
}

.why-choose-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.why-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.why-item {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.why-item h3 {
    color: var(--primary-color);
}

.contact-split {
    display: flex;
    gap: 4rem;
    padding: 5rem 0;
}

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

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-map img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-white);
    padding: 4rem;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
}

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

.thanks-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
}

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

.thanks-next-steps {
    text-align: left;
    margin: 3rem 0;
}

.next-steps-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

.next-steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.next-steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.thanks-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.legal-page {
    padding: 3rem 0 5rem;
}

.legal-intro {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.legal-page h2 {
    margin-top: 2.5rem;
    color: var(--primary-color);
}

.legal-page h3 {
    margin-top: 1.5rem;
    color: var(--secondary-color);
}

.legal-page h4 {
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

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

    .trust-split,
    .insight-split,
    .testimonial-split,
    .urgency-split,
    .form-split,
    .about-split,
    .team-split,
    .approach-split,
    .contact-split {
        flex-direction: column;
    }

    .trust-right img,
    .insight-right img {
        height: 400px;
    }

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

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

    .hero-left,
    .hero-right {
        padding: 2rem;
    }

    .container,
    .container-wide,
    .container-narrow {
        padding: 0 1.5rem;
    }

    .problem-grid,
    .philosophy-grid,
    .benefits-split-grid,
    .why-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: flex-start;
    }

    .thanks-container {
        padding: 2.5rem 1.5rem;
    }

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

    .thanks-cta a {
        width: 100%;
    }

    .sticky-cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

    .container,
    .container-wide,
    .container-narrow {
        padding: 0 1rem;
    }
}