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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px;
    font-size: 0.75rem;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

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

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

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

.nav-links a:hover {
    color: #007bff;
}

.hero-split {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-right img,
.split-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.hero-content {
    padding: 2rem 0;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #495057;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.cta-primary.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #007bff;
    padding: 1rem 2rem;
    text-decoration: none;
    border: 2px solid #007bff;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #007bff;
    color: #ffffff;
}

.intro-split {
    padding: 5rem 0;
}

.intro-split.reverse .split-container {
    flex-direction: column;
}

.content-block {
    padding: 2rem 0;
}

.content-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.content-block p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #495057;
    line-height: 1.8;
}

.value-proposition {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

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

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

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

.value-card p {
    color: #495057;
    line-height: 1.7;
}

.approach-split {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

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

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-highlight {
    padding: 2rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.service-highlight:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.service-highlight p {
    color: #495057;
    line-height: 1.7;
}

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

.form-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.benefit-item {
    padding: 0.8rem 1rem;
    background-color: #ffffff;
    border-left: 3px solid #007bff;
    font-weight: 500;
    color: #495057;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #ced4da;
    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: #007bff;
}

.btn-submit {
    background-color: #007bff;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.expertise-split {
    padding: 5rem 0;
}

.expertise-split.reverse .split-container {
    flex-direction: column;
}

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

.insight-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.cta-final {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e9ecef;
}

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

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.7;
    font-style: italic;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: #b0bec5;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #34495e;
    color: #b0bec5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #80c0ff;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #28a745;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background-color: #5a6268;
}

.page-header {
    background-color: #f8f9fa;
    padding: 4rem 2rem 3rem;
    text-align: center;
}

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

.page-subtitle {
    font-size: 1.2rem;
    color: #495057;
}

.services-detailed {
    padding: 4rem 0;
}

.service-item {
    margin-bottom: 5rem;
}

.split-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.split-layout.reverse {
    flex-direction: column;
}

.service-content {
    flex: 1;
    padding: 2rem;
}

.service-image {
    flex: 1;
}

.service-item h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.2rem;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #495057;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.service-price {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #007bff;
    margin: 0.5rem 0;
}

.price-note {
    font-size: 0.95rem;
    color: #6c757d;
}

.service-cta {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    text-align: center;
}

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

.service-cta p {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 2rem;
}

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

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

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-item {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.philosophy-item p {
    color: #495057;
    line-height: 1.7;
}

.expertise-detail {
    padding: 5rem 0;
}

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

.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.approach-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.5rem;
}

.values-split {
    padding: 5rem 0;
}

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

.commitment-text {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.5rem;
}

.cta-about {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

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

.cta-about p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e9ecef;
}

.contact-main {
    padding: 5rem 2rem;
}

.contact-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-info-block p {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-detail p {
    color: #495057;
    line-height: 1.7;
}

.email-text {
    font-weight: 600;
    color: #007bff;
}

.contact-note {
    font-size: 0.95rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

.contact-image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
}

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

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

.contact-additional p {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

.location-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.5rem;
}

.contact-faq {
    padding: 5rem 2rem;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

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

.cta-contact {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

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

.cta-contact p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e9ecef;
}

.thanks-hero {
    padding: 5rem 2rem;
    text-align: center;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #28a745;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

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

.thanks-subtitle {
    font-size: 1.2rem;
    color: #495057;
}

.thanks-details {
    padding: 5rem 2rem;
}

.thanks-info-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

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

.step-content p {
    color: #495057;
    line-height: 1.7;
}

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

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

.service-display {
    font-weight: 600;
    color: #007bff;
    font-size: 1.1rem;
}

.thanks-suggestions {
    list-style: none;
}

.thanks-suggestions li {
    margin-bottom: 0.8rem;
}

.thanks-suggestions a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.thanks-suggestions a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.thanks-reassurance {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.reassurance-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reassurance-item {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

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

.reassurance-item p {
    color: #495057;
    line-height: 1.7;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.legal-updated {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #495057;
    line-height: 1.7;
}

.legal-content a {
    color: #007bff;
    text-decoration: underline;
}

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

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

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

.cookie-table td {
    color: #495057;
}

@media (min-width: 768px) {
    .split-container {
        flex-direction: row;
        gap: 4rem;
    }

    .intro-split.reverse .split-container {
        flex-direction: row-reverse;
    }

    .expertise-split.reverse .split-container {
        flex-direction: row-reverse;
    }

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

    .value-card {
        flex: 1;
        min-width: 280px;
    }

    .services-showcase {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-highlight {
        flex: 1;
        min-width: 280px;
    }

    .form-split {
        flex-direction: row;
    }

    .form-intro,
    .form-wrapper {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
    }

    .footer-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

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

    .philosophy-item {
        flex: 1;
        min-width: 280px;
    }

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

    .contact-info-block,
    .contact-image-block {
        flex: 1;
    }

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

    .faq-item {
        flex: 1;
        min-width: 280px;
    }

    .thanks-info-split {
        flex-direction: row;
    }

    .thanks-info-left {
        flex: 2;
    }

    .thanks-info-right {
        flex: 1;
    }

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

    .reassurance-item {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .nav-container {
        flex-wrap: nowrap;
    }
}