* {
    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: #2c2c2c;
    background-color: #ffffff;
}

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

a:hover {
    opacity: 0.7;
}

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

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

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

.main-nav a {
    font-size: 0.95rem;
    color: #2c2c2c;
    font-weight: 500;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 8%;
    background-color: #fafafa;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-text-wrapper h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.cta-primary:hover {
    background-color: #3f3f3f;
    opacity: 1;
}

.cta-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.story-section {
    padding: 5rem 0;
}

.story-split {
    display: flex;
}

.story-left {
    flex: 1;
    overflow: hidden;
}

.story-left img {
    width: 100%;
    height: 100%;
    display: block;
}

.story-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.insight-section {
    padding: 5rem 0;
    background-color: #fafafa;
}

.insight-split {
    display: flex;
}

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

.insight-left {
    flex: 1;
    overflow: hidden;
}

.insight-left img {
    width: 100%;
    height: 100%;
    display: block;
}

.insight-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.insight-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.link-arrow {
    color: #2c2c2c;
    font-weight: 500;
    display: inline-block;
    border-bottom: 1px solid #2c2c2c;
    cursor: pointer;
}

.link-arrow:hover {
    opacity: 0.7;
}

.trust-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

.trust-header h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.trust-grid {
    display: flex;
    gap: 3rem;
}

.trust-card {
    flex: 1;
    padding: 2rem;
    background-color: #f9f9f9;
}

.trust-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.trust-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

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

.testimonial-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.testimonial-content blockquote {
    margin-bottom: 2.5rem;
}

.testimonial-content blockquote p {
    font-size: 1.15rem;
    font-style: italic;
    color: #333;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

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

.testimonial-right {
    flex: 1;
    overflow: hidden;
}

.testimonial-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-section {
    padding: 5rem 5%;
    background-color: #fafafa;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-container h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a1a1a;
}

.services-intro {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 4rem;
}

.services-split-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    overflow: hidden;
}

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

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

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-top: 1rem;
}

.form-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.form-split {
    display: flex;
}

.form-left {
    flex: 1;
    padding: 0 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c2c2c;
    color: #ffffff;
}

.form-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.form-left p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-benefits {
    list-style: none;
    padding: 0;
}

.form-benefits li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.form-right {
    flex: 1;
    padding: 5rem 8%;
    background-color: #fafafa;
}

.contact-form {
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c2c2c;
}

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

.btn-submit:hover {
    background-color: #3f3f3f;
}

.disclaimer-section {
    padding: 3rem 5%;
    background-color: #f5f5f5;
}

.disclaimer-container {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

.footer-split {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 5% 2rem;
}

.footer-top {
    display: flex;
    gap: 5rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 1000;
    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: #ffffff;
    text-decoration: underline;
}

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

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

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

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

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

.page-hero .hero-split {
    min-height: 400px;
}

.about-content {
    padding: 5rem 0;
}

.about-split {
    display: flex;
}

.about-left {
    flex: 1;
    padding: 0 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-left p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-right {
    flex: 1;
    overflow: hidden;
}

.about-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-section {
    padding: 5rem 5%;
    background-color: #fafafa;
}

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

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

.values-grid {
    display: flex;
    gap: 3rem;
}

.value-item {
    flex: 1;
    padding: 2rem;
}

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

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

.team-section {
    padding: 5rem 0;
}

.team-split {
    display: flex;
}

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

.team-left {
    flex: 1;
    overflow: hidden;
}

.team-left img {
    width: 100%;
    height: 100%;
    display: block;
}

.team-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.team-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.cta-section {
    padding: 5rem 5%;
    background-color: #2c2c2c;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-container p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.services-detail-section {
    padding: 5rem 5%;
}

.service-detail-card {
    margin-bottom: 4rem;
}

.service-detail-split {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

.service-detail-left {
    flex: 1;
    overflow: hidden;
}

.service-detail-left img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

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

.service-includes {
    list-style: none;
    margin-bottom: 2rem;
}

.service-includes li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #555;
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #2c2c2c;
}

.service-detail-price {
    font-size: 2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.process-section {
    padding: 5rem 5%;
    background-color: #fafafa;
}

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

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

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

.step-item {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

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

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

.contact-info-section {
    padding: 5rem 0;
}

.contact-split {
    display: flex;
}

.contact-left {
    flex: 1;
    padding: 0 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

.contact-right {
    flex: 1;
    overflow: hidden;
}

.contact-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-cta-section {
    padding: 5rem 5%;
    background-color: #fafafa;
}

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

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-lead {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-info {
    margin-bottom: 3rem;
}

.thanks-info p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.8rem;
}

.legal-page {
    padding: 5rem 5%;
    background-color: #fafafa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 8px;
}

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

.legal-intro {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 3rem;
}

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

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.legal-container p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-container a {
    color: #2c2c2c;
    text-decoration: underline;
}

.legal-container a:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .hero-split,
    .story-split,
    .insight-split,
    .testimonial-split,
    .form-split,
    .about-split,
    .team-split,
    .contact-split,
    .service-card,
    .service-detail-split {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-right {
        min-height: 400px;
    }

    .trust-grid,
    .values-grid,
    .process-steps {
        flex-direction: column;
    }

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

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

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        gap: 1rem;
    }
}
