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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.cookie-content a {
    color: #66b3ff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #0066cc;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #0052a3;
}

.btn-reject {
    background-color: #666666;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #4d4d4d;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #0066cc;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

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

.hero-left p {
    font-size: 1.25rem;
    color: #4d4d4d;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #0052a3;
}

.value-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    gap: 3rem;
}

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

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

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

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

.split-content p {
    font-size: 1.125rem;
    color: #4d4d4d;
    margin-bottom: 1rem;
}

.insight-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

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

.insight-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.insight-card {
    flex: 1;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.insight-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.insight-card h3 {
    font-size: 1.5rem;
    padding: 1.5rem 1.5rem 0.75rem;
    color: #1a1a1a;
}

.insight-card p {
    padding: 0 1.5rem 1.5rem;
    color: #4d4d4d;
    font-size: 1rem;
}

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

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

.form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.form-left p {
    font-size: 1.125rem;
    color: #4d4d4d;
}

.form-right {
    flex: 1;
}

.service-form {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.service-selection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-option {
    display: flex;
    align-items: flex-start;
    padding: 1.25rem;
    background-color: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option:hover {
    border-color: #0066cc;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1);
}

.service-option input[type="radio"] {
    margin-right: 1rem;
    margin-top: 0.25rem;
    cursor: pointer;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.service-name {
    font-weight: 600;
    font-size: 1.125rem;
    color: #1a1a1a;
}

.service-price {
    font-weight: 700;
    color: #0066cc;
    font-size: 1rem;
}

.service-desc {
    font-size: 0.875rem;
    color: #666666;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-fields input {
    padding: 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #0052a3;
}

.testimonials-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

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

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-size: 1.125rem;
    color: #4d4d4d;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
    font-style: normal;
}

.process-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    gap: 3rem;
}

.process-list {
    list-style-position: inside;
    font-size: 1.125rem;
    color: #4d4d4d;
}

.process-list li {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.disclaimer-section {
    background-color: #fff9e6;
    padding: 3rem 2rem;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.875rem;
    color: #666666;
}

.disclaimer-content strong {
    color: #1a1a1a;
}

.main-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    color: #b3b3b3;
    font-size: 0.9rem;
}

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #404040;
    text-align: center;
    color: #b3b3b3;
    font-size: 0.875rem;
}

.page-hero {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: #b3b3b3;
}

.about-split,
.team-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    gap: 3rem;
}

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

.values-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.value-item p {
    color: #4d4d4d;
}

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

.approach-container h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.approach-container p {
    font-size: 1.125rem;
    color: #4d4d4d;
    margin-bottom: 1.5rem;
}

.approach-list {
    list-style-position: inside;
    font-size: 1.125rem;
    color: #4d4d4d;
}

.approach-list li {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.services-intro {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    text-align: center;
}

.intro-container p {
    font-size: 1.25rem;
    color: #4d4d4d;
}

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

.service-card-full {
    display: flex;
    margin-bottom: 3rem;
    gap: 3rem;
    align-items: center;
}

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

.service-card-left {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    background-color: #e0e0e0;
}

.service-card-left img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-card-right {
    flex: 1;
}

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

.service-price-large {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1rem;
}

.service-card-right p {
    font-size: 1.125rem;
    color: #4d4d4d;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    color: #4d4d4d;
    font-size: 1rem;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #0052a3;
}

.additional-services {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    margin-top: 4rem;
}

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

.additional-container h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.additional-container > p {
    font-size: 1.125rem;
    color: #4d4d4d;
    margin-bottom: 2rem;
}

.additional-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.additional-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.additional-price {
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 0.75rem;
}

.additional-item p:not(.additional-price) {
    color: #4d4d4d;
    font-size: 0.95rem;
}

.pricing-notes {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    background-color: #fff9e6;
    border-radius: 8px;
}

.notes-container h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.notes-container p {
    font-size: 1rem;
    color: #4d4d4d;
    margin-bottom: 1rem;
}

.notes-container ul {
    list-style-position: inside;
    color: #4d4d4d;
}

.notes-container ul li {
    margin-bottom: 0.5rem;
}

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

.contact-info {
    flex: 1;
}

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

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

.contact-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-block p {
    color: #4d4d4d;
    font-size: 1rem;
    line-height: 1.8;
}

.contact-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    background-color: #e0e0e0;
}

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

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

.approach-container h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.approach-container a {
    color: #0066cc;
    text-decoration: underline;
}

.approach-timeline {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.timeline-item {
    flex: 1;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.timeline-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.timeline-item p {
    color: #4d4d4d;
    font-size: 0.95rem;
}

.location-info {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

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

.location-container h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.location-container p {
    font-size: 1.125rem;
    color: #4d4d4d;
    margin-bottom: 1rem;
}

.thanks-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.thanks-container {
    text-align: center;
}

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

.thanks-container > p {
    font-size: 1.25rem;
    color: #4d4d4d;
    margin-bottom: 3rem;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-details p {
    font-size: 1.125rem;
    color: #0066cc;
    font-weight: 600;
}

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

.next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.next-steps ol {
    list-style-position: inside;
    font-size: 1.125rem;
    color: #4d4d4d;
}

.next-steps ol li {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #0066cc;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #0052a3;
}

.btn-secondary {
    background-color: #e5e5e5;
    color: #1a1a1a;
}

.btn-secondary:hover {
    background-color: #d0d0d0;
}

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

.legal-container {
    line-height: 1.8;
}

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

.legal-update {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

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

.legal-container h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.legal-container p {
    color: #4d4d4d;
    margin-bottom: 1rem;
}

.legal-container ul,
.legal-container ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: #4d4d4d;
}

.legal-container ul li,
.legal-container ol li {
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #0066cc;
    text-decoration: underline;
}

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

.cookie-table thead {
    background-color: #f8f9fa;
}

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

.cookie-table th {
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #4d4d4d;
}

@media (max-width: 768px) {
    .hero-split,
    .value-split,
    .form-split,
    .service-card-full,
    .contact-split,
    .process-split,
    .about-split,
    .team-split {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .insight-grid,
    .testimonials-grid,
    .values-grid,
    .additional-grid,
    .approach-timeline {
        flex-direction: column;
    }

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

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

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

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

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