* {
    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;
}

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

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #3498db;
}

.ad-disclosure {
    background: #fff3cd;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #856404;
    font-weight: 600;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

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

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

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

.hero-split {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.hero-text-side {
    flex: 1;
}

.hero-text-side h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-text-side p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.hero-image-side {
    flex: 1;
}

.hero-image-side img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary {
    background: #3498db;
    color: #ffffff;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.cta-secondary {
    background: #2c3e50;
    color: #ffffff;
}

.cta-secondary:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.intro-split {
    padding: 6rem 0;
    background: #ffffff;
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-image-left,
.split-image-right {
    flex: 1;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.split-image-left img,
.split-image-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.split-text-left h2,
.split-text-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
}

.split-text-left p,
.split-text-right p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.services-showcase {
    padding: 6rem 0;
    background: #f8f9fa;
}

.section-header-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.section-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.section-header-center p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.service-image {
    flex: 1;
    background: #f8f9fa;
    border-radius: 6px;
    overflow: hidden;
}

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

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-details p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price-tag {
    font-size: 2rem;
    font-weight: 800;
    color: #27ae60;
    margin-top: 1rem;
}

.proof-section {
    padding: 6rem 0;
    background: #ffffff;
}

blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
}

cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #2c3e50;
}

.cta-section-inline {
    padding: 5rem 0;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    text-align: center;
}

.cta-inline-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.cta-inline-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.form-section-split {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.form-intro-left h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.staging-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    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: #3498db;
}

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

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-column p {
    color: #b8b8b8;
    line-height: 1.6;
}

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

.footer-column li {
    margin-bottom: 0.7rem;
}

.footer-column a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #b8b8b8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #222;
    border-radius: 4px;
}

.page-hero-split {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #ecf0f1 0%, #d5dbdb 100%);
}

.about-content-split {
    padding: 6rem 0;
    background: #ffffff;
}

.process-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.process-split-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.process-item-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.process-item-split.reverse {
    flex-direction: row-reverse;
}

.process-text {
    flex: 1;
}

.process-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.process-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.values-split {
    padding: 6rem 0;
    background: #ffffff;
}

.team-approach {
    padding: 6rem 0;
    background: #f8f9fa;
}

.cta-section-about {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    text-align: center;
}

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

.service-detail-split {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 3rem 0;
    border-bottom: 1px solid #e8e8e8;
}

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

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

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #27ae60;
    margin: 1rem 0;
}

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

.service-includes h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    line-height: 1.6;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-detail-image {
    flex: 1;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-service {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.9rem 2rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.service-comparison {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.contact-info-split {
    padding: 6rem 0;
    background: #ffffff;
}

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

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

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-item p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

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

.email-note {
    font-size: 0.95rem;
    color: #888;
    margin-top: 0.5rem;
}

.map-placeholder {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
}

.contact-approach {
    padding: 6rem 0;
    background: #f8f9fa;
}

.approach-split-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.approach-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-item p {
    color: #555;
    line-height: 1.7;
}

.contact-alternative {
    padding: 6rem 0;
    background: #ffffff;
}

.faq-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

.thanks-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 800;
}

.thanks-content p {
    font-size: 1.3rem;
    color: #ffffff;
    opacity: 0.95;
}

.thanks-details {
    padding: 6rem 0;
    background: #ffffff;
}

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

.thanks-left {
    flex: 2;
}

.thanks-left h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.step-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 700;
}

.step-item p {
    color: #555;
    line-height: 1.7;
}

.thanks-right {
    flex: 1;
}

.thanks-sidebar {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    position: sticky;
    top: 100px;
}

.thanks-sidebar h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-sidebar p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #888;
}

.cta-inline {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: #2980b9;
}

.thanks-testimonial {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.legal-page {
    padding: 6rem 0;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 800;
}

.legal-updated {
    color: #888;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
    color: #2c3e50;
    font-weight: 600;
}

.legal-section p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
    color: #555;
}

.legal-section li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e8e8e8;
}

.cookies-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: #1a1a1a;
}

.cookies-table td {
    color: #555;
}

@media (max-width: 968px) {
    .hero-content,
    .split-container,
    .service-card-split,
    .service-detail-split,
    .thanks-split {
        flex-direction: column;
    }

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

    .hero-text-side h1 {
        font-size: 2.5rem;
    }

    .footer-content {
        flex-direction: column;
    }

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

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .approach-item,
    .faq-item {
        flex: 1 1 100%;
    }
}