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

html {
    scroll-behavior: smooth;
}

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

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

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

.hero-left {
    padding: 4rem;
}

.hero-right {
    overflow: hidden;
}

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

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

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

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

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

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

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

.split-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

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

.split-content,
.split-image {
    flex: 1;
}

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

.split-image {
    overflow: hidden;
}

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

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

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

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

p {
    margin-bottom: 1rem;
}

.benefits-section,
.process-section,
.features-split {
    padding: 4rem 0;
}

.benefit-list {
    list-style: none;
    margin-top: 1.5rem;
}

.benefit-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.link-inline {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.link-inline:hover {
    text-decoration: underline;
}

.industries-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

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

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.industry-card {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    border-radius: 8px;
    min-width: 280px;
}

.industry-card img {
    width: 100%;
    height: 200px;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.testimonial-section {
    padding: 4rem 0;
}

.testimonial {
    font-size: 1.25rem;
    font-style: italic;
    padding: 2rem;
    border-left: 4px solid #0066cc;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 1rem;
    color: #666;
}

.feature-item {
    margin: 2rem 0;
}

.booking-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.section-intro {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #555;
}

.booking-form {
    max-width: 700px;
    margin: 3rem auto 0;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

.form-step.hidden {
    display: none;
}

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

.service-option {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.3s, background-color 0.3s;
}

.service-option:hover {
    border-color: #0066cc;
    background-color: #f8f8f8;
}

.service-option input[type="radio"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.service-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

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

.btn-next,
.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

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

.btn-back {
    padding: 1rem 2rem;
    background-color: #e0e0e0;
    color: #2c2c2c;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-actions .btn-back {
    flex: 0 0 auto;
}

.form-actions .btn-submit {
    flex: 1;
    margin-top: 0;
}

.final-cta {
    padding: 4rem 0;
    text-align: center;
}

.final-cta h2 {
    color: #ffffff;
}

.final-cta p {
    color: #e0e0e0;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

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

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    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 {
    margin: 0;
    flex: 1;
}

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

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

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

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

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

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

.page-hero {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

.page-hero h1 {
    text-align: center;
}

.hero-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #666;
}

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

.services-catalog {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.service-card-large {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-card-content {
    flex: 1.2;
    padding: 3rem;
}

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

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

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

.service-description {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0066cc;
}

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

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

.comparison-section {
    padding: 4rem 0;
    text-align: center;
}

.about-story,
.team-section {
    padding: 4rem 0;
}

.mission-section {
    padding: 4rem 0;
}

.mission-text {
    font-size: 1.25rem;
    line-height: 1.8;
}

.values-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    min-width: 280px;
}

.approach-section {
    padding: 4rem 0;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.approach-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066cc;
    flex: 0 0 auto;
}

.stats-section {
    padding: 4rem 0;
}

.stats-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0066cc;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
}

.cta-section {
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    color: #ffffff;
}

.cta-section p {
    color: #e0e0e0;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.contact-main {
    padding: 4rem 0;
}

.contact-info-block {
    margin: 2rem 0;
}

.contact-detail {
    font-size: 1.125rem;
    color: #2c2c2c;
}

.contact-cta {
    padding: 4rem 0;
    text-align: center;
}

.thanks-section {
    padding: 6rem 0;
}

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

.thanks-message {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 3rem;
}

.thanks-service-info {
    margin: 2rem 0;
}

.service-confirmation {
    background-color: #f0f8ff;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

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

.thanks-next-steps {
    text-align: left;
    margin: 3rem auto;
    max-width: 600px;
}

.steps-list {
    margin-top: 1.5rem;
    padding-left: 1.5rem;
}

.steps-list li {
    margin-bottom: 1rem;
}

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

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

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

.btn-secondary-link {
    display: inline-block;
    padding: 1rem 2rem;
    color: #0066cc;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: color 0.3s;
}

.btn-secondary-link:hover {
    color: #0052a3;
    text-decoration: underline;
}

.legal-page {
    padding: 4rem 0;
}

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

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

.container-legal h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.container-legal h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.container-legal h4 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
}

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

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

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-container {
        flex-direction: column;
    }

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

    .hero-left {
        padding: 3rem 2rem;
    }

    h1 {
        font-size: 2.25rem;
    }

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

    .industry-card {
        flex: 1 1 100%;
    }

    .service-card-large,
    .service-card-large.reverse {
        flex-direction: column;
    }

    .stats-grid {
        flex-wrap: wrap;
    }

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .split-content {
        padding: 2rem;
    }

    .booking-form {
        padding: 2rem;
    }

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

    .value-card {
        flex: 1 1 100%;
    }

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

    .form-actions .btn-back {
        flex: 1;
    }
}
