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

:root {
    --primary-color: #8B1538;
    --secondary-color: #2C3E50;
    --accent-color: #C9A961;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f8f8;
    --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);
    font-size: 16px;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
}

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

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

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

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

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

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

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

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

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: lowercase;
}

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

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

.nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: var(--white);
    list-style: none;
    padding: 30px;
    transition: 0.3s;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}

.nav-menu.active {
    right: 0;
}

.nav-menu li {
    margin-bottom: 20px;
}

.nav-menu a {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 10px 0;
}

.hero-asymmetric {
    display: flex;
    flex-direction: column;
    min-height: 500px;
    position: relative;
    margin-bottom: 60px;
}

.hero-image-block {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

.hero-text-offset {
    background: var(--white);
    padding: 40px 20px;
    margin: -50px 20px 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.hero-text-offset h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-text-offset p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
}

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

.intro-story {
    padding: 60px 0;
    background: var(--bg-light);
}

.lead-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.visual-break {
    position: relative;
    margin: 60px 0;
    height: 400px;
}

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

.overlay-card {
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
    background: var(--white);
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.overlay-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.problem-section {
    padding: 80px 0;
}

.split-offset {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.problem-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.problem-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

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

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

.issue-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: bold;
}

.problem-image {
    width: 100%;
}

.problem-image img {
    width: 100%;
    height: auto;
}

.insight-block {
    background: var(--secondary-color);
    color: var(--white);
    padding: 80px 0;
}

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

.insight-label {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.insight-content h2 {
    font-size: 34px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.insight-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.services-cards {
    padding: 80px 0;
}

.section-title-offset {
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--secondary-color);
    margin-left: 20px;
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.card-content {
    padding: 30px;
}

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

.card-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.price-tag {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.btn-select-service:hover {
    background: var(--secondary-color);
}

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

.testimonial-inline blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 30px;
    font-size: 22px;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: var(--text-light);
}

.process-flow {
    padding: 80px 0;
}

.process-flow h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

.process-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    padding: 30px;
    background: var(--bg-light);
}

.step-number {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

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

.process-step p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.trust-elements {
    padding: 80px 0;
    background: var(--white);
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.trust-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

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

.cta-sticky-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.final-visual {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

.final-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-overlay p {
    font-size: 36px;
    color: var(--white);
    font-weight: 300;
    text-align: center;
    padding: 0 20px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 40px 30px;
    max-width: 500px;
    width: 100%;
    position: relative;
    border-radius: 4px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.selected-service-display {
    background: var(--bg-light);
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 4px;
}

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

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

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

.form-group textarea {
    resize: vertical;
}

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

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

.site-footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

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

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-col a {
    color: var(--white);
    opacity: 0.9;
    font-size: 15px;
}

.footer-col a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

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

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

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

.service-detail-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
    border: 1px solid var(--border-color);
    background: var(--white);
}

.service-detail-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.service-detail-content {
    padding: 40px 30px;
}

.service-detail-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.service-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.service-includes {
    list-style: none;
    margin-bottom: 30px;
}

.service-includes li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--text-light);
    font-size: 16px;
}

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

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.pricing-note h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.pricing-note p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.about-story {
    padding: 60px 0;
}

.about-story p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-story h2 {
    font-size: 30px;
    margin: 50px 0 20px;
    color: var(--secondary-color);
}

.about-image {
    width: 100%;
    margin: 40px 0;
    border-radius: 4px;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 50px 0;
}

.value-item {
    padding: 30px;
    background: var(--bg-light);
}

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

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

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

.about-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.contact-section {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

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

.contact-map {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 4px;
}

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

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

.faq-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

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

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

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

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.service-confirmation {
    background: var(--bg-light);
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 40px auto;
    padding-left: 20px;
}

.next-steps li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.legal-page {
    padding: 60px 0;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.legal-page h2 {
    font-size: 26px;
    margin: 40px 0 15px;
    color: var(--secondary-color);
}

.legal-page h3 {
    font-size: 20px;
    margin: 25px 0 12px;
    color: var(--text-dark);
}

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

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

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

@media (min-width: 768px) {
    .hero-asymmetric {
        flex-direction: row;
        min-height: 600px;
    }

    .hero-image-block {
        width: 60%;
        height: auto;
    }

    .hero-text-offset {
        width: 50%;
        margin: 60px 0 60px -80px;
        padding: 50px;
    }

    .hero-text-offset h1 {
        font-size: 44px;
    }

    .split-offset {
        flex-direction: row;
        align-items: center;
    }

    .problem-text {
        flex: 1;
    }

    .problem-image {
        width: 45%;
    }

    .cards-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        width: calc(50% - 15px);
    }

    .process-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        width: calc(50% - 20px);
    }

    .trust-grid {
        flex-direction: row;
    }

    .trust-item {
        flex: 1;
    }

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

    .service-detail-image {
        width: 45%;
        height: auto;
    }

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

    .values-grid {
        flex-direction: row;
    }

    .value-item {
        flex: 1;
    }

    .contact-layout {
        flex-direction: row;
    }

    .contact-info {
        flex: 1;
    }

    .contact-map {
        width: 50%;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .hamburger {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        display: flex;
        background: transparent;
    }

    .nav-menu li {
        margin-bottom: 0;
        margin-left: 30px;
    }

    .nav-menu a {
        font-size: 16px;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero-text-offset h1 {
        font-size: 52px;
    }

    .service-card {
        width: calc(33.333% - 20px);
    }

    .process-step {
        width: calc(25% - 30px);
    }
}