/* Reset and Base Styles - Mobile First */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* Navigation */
.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c5282;
}

.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-links.active {
    display: flex;
}

.nav-links li {
    border-bottom: 1px solid #e2e8f0;
}

.nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    color: #4a5568;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2c5282;
    background-color: #f7fafc;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c5282;
    margin: 3px 0;
    transition: 0.3s;
}

/* Container Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Split Screen Layout - Core of the Archetype */
.split-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.split-content {
    padding: 2rem 1.5rem;
}

.split-visual {
    min-height: 300px;
    overflow: hidden;
}

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

/* Hero Section */
.hero-split {
    min-height: 500px;
}

.hero-split .split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f7fafc;
}

.hero-split h1 {
    font-size: 2rem;
    line-height: 1.2;
    color: #1a365d;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #2c5282;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1a365d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 82, 130, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #2c5282;
    border-color: #2c5282;
}

.btn-secondary:hover {
    background-color: #2c5282;
    color: #ffffff;
}

.btn-outline {
    background-color: transparent;
    color: #2c5282;
    border-color: #2c5282;
}

.btn-outline:hover {
    background-color: #2c5282;
    color: #ffffff;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

/* Intro Section */
.intro-section {
    padding: 3rem 0;
    background-color: #ffffff;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
}

/* Value Split Section */
.value-split {
    padding: 3rem 0;
    background-color: #f7fafc;
}

.value-split h2 {
    font-size: 1.75rem;
    color: #1a365d;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.value-split p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.checklist {
    list-style: none;
}

.checklist li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: #4a5568;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: bold;
}

/* Services Preview */
.services-preview {
    padding: 4rem 0;
    background-color: #ffffff;
}

.section-title {
    font-size: 2rem;
    color: #1a365d;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #2c5282;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.375rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.service-card p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #edf2f7;
    color: #2c5282;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.125rem;
}

.cta-center {
    text-align: center;
}

/* Trust Section */
.trust-split {
    padding: 3rem 0;
    background-color: #ffffff;
}

.trust-split h2 {
    font-size: 1.75rem;
    color: #1a365d;
    margin-bottom: 1.25rem;
}

.testimonial {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f7fafc;
    border-left: 4px solid #2c5282;
    border-radius: 4px;
}

.testimonial p {
    font-style: italic;
    color: #4a5568;
    margin-bottom: 0.75rem;
}

.testimonial cite {
    font-style: normal;
    color: #718096;
    font-size: 0.9375rem;
    font-weight: 600;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background-color: #f7fafc;
}

.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.benefit-block h3 {
    font-size: 1.25rem;
    color: #1a365d;
    margin-bottom: 0.75rem;
}

.benefit-block p {
    color: #4a5568;
    line-height: 1.6;
}

/* Form Section */
.form-split {
    padding: 4rem 0;
    background-color: #edf2f7;
}

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

.form-intro p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.form-benefits {
    margin-top: 1.5rem;
}

.form-benefits p {
    margin-bottom: 0.5rem;
    color: #2c5282;
    font-weight: 500;
}

.main-form {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

.checkbox-group span {
    font-size: 0.9375rem;
    color: #4a5568;
}

.checkbox-group a {
    color: #2c5282;
    text-decoration: underline;
}

/* Final CTA */
.final-cta {
    padding: 4rem 0;
    background-color: #2c5282;
    text-align: center;
}

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

.final-cta p {
    color: #e2e8f0;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.final-cta .btn {
    background-color: #ffffff;
    color: #2c5282;
}

.final-cta .btn:hover {
    background-color: #f7fafc;
    transform: translateY(-2px);
}

/* Footer */
.main-footer {
    background-color: #1a365d;
    color: #e2e8f0;
    padding: 3rem 0 1rem;
}

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-col p {
    color: #cbd5e0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

.footer-col a {
    color: #cbd5e0;
    font-size: 0.9375rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
    font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a365d;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    text-align: center;
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.cookie-link {
    color: #90cdf4;
    text-decoration: underline;
    font-size: 0.875rem;
}

/* Page Hero */
.page-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* Story Section */
.story-split {
    padding: 3rem 0;
}

.story-split h2 {
    font-size: 1.75rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.story-split p {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background-color: #f7fafc;
}

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

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

.value-card h3 {
    font-size: 1.25rem;
    color: #2c5282;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Team Section */
.team-split {
    padding: 3rem 0;
    background-color: #ffffff;
}

/* Approach Section */
.approach-section {
    padding: 4rem 0;
    background-color: #f7fafc;
}

.approach-section h2 {
    font-size: 1.875rem;
    color: #1a365d;
    text-align: center;
    margin-bottom: 1rem;
}

.approach-section > p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 3rem;
    line-height: 1.7;
}

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

.step-block {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    position: relative;
    padding-left: 5rem;
}

.step-number {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 800;
    color: #cbd5e0;
}

.step-block h3 {
    font-size: 1.25rem;
    color: #2c5282;
    margin-bottom: 0.5rem;
}

.step-block p {
    color: #4a5568;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background-color: #2c5282;
    text-align: center;
}

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

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

/* Services Detailed */
.services-detailed {
    padding: 3rem 0;
}

.service-detail-split {
    display: flex;
    flex-direction: column;
    padding: 3rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.service-detail-split:last-child {
    border-bottom: none;
}

.service-info h2 {
    font-size: 1.75rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.service-info h3 {
    font-size: 1.25rem;
    color: #2c5282;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-info p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-includes {
    list-style: disc;
    padding-left: 1.5rem;
    color: #4a5568;
}

.service-includes li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.service-pricing {
    padding: 2rem 0;
}

.price-box {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #2c5282;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 0.9375rem;
    color: #718096;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #2c5282;
    line-height: 1;
}

.price-period {
    display: block;
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.price-note {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 1.5rem;
}

/* Custom Service */
.custom-service {
    padding: 4rem 0;
    background-color: #f7fafc;
    text-align: center;
}

.custom-service h2 {
    font-size: 1.875rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.custom-service p {
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Guarantees */
.guarantees-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

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

.guarantee-block {
    padding: 1.5rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.guarantee-block h3 {
    font-size: 1.25rem;
    color: #2c5282;
    margin-bottom: 0.75rem;
}

.guarantee-block p {
    color: #4a5568;
    line-height: 1.6;
}

/* FAQ */
.faq-section {
    padding: 4rem 0;
    background-color: #f7fafc;
}

.faq-section h2 {
    font-size: 1.875rem;
    color: #1a365d;
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.faq-item h3 {
    font-size: 1.125rem;
    color: #2c5282;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Contact Page */
.contact-split {
    padding: 3rem 0;
}

.contact-details {
    padding: 2rem 1.5rem;
}

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

.contact-block h3 {
    font-size: 1.25rem;
    color: #2c5282;
    margin-bottom: 0.75rem;
}

.contact-info {
    color: #4a5568;
    line-height: 1.8;
}

.contact-info strong {
    color: #2d3748;
}

.contact-info a {
    color: #2c5282;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.875rem;
    color: #718096;
    margin-top: 0.5rem;
    font-style: italic;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.day {
    color: #2d3748;
    font-weight: 500;
}

.time {
    color: #4a5568;
}

.transport-info {
    color: #4a5568;
    line-height: 1.7;
}

.transport-info strong {
    color: #2d3748;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-map {
    padding: 2rem 1.5rem;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-contact {
    padding: 1.5rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.quick-contact h3 {
    font-size: 1.125rem;
    color: #2c5282;
    margin-bottom: 0.75rem;
}

.quick-contact p {
    color: #4a5568;
    line-height: 1.6;
}

.quick-contact a {
    color: #2c5282;
    font-weight: 600;
}

/* Appointment Section */
.appointment-section {
    padding: 4rem 0;
    background-color: #edf2f7;
    text-align: center;
}

.appointment-section h2 {
    font-size: 1.75rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.appointment-section p {
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* FAQ Contact */
.faq-contact {
    padding: 4rem 0;
    background-color: #ffffff;
}

.faq-contact h2 {
    font-size: 1.875rem;
    color: #1a365d;
    text-align: center;
    margin-bottom: 3rem;
}

/* Thanks Page */
.thanks-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    text-align: center;
}

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

.thanks-hero h1 {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.7;
}

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

.info-box {
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.info-box h2 {
    font-size: 1.5rem;
    color: #2c5282;
    margin-bottom: 1.5rem;
}

.next-steps {
    list-style: none;
    counter-reset: step-counter;
}

.next-steps li {
    counter-increment: step-counter;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
    color: #4a5568;
    line-height: 1.7;
}

.next-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background-color: #2c5282;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.service-selected {
    padding: 1rem;
    background-color: #ebf8ff;
    border-left: 4px solid #2c5282;
    margin-bottom: 1.5rem;
    color: #2c5282;
}

.info-notice {
    padding: 1rem 1.5rem;
    background-color: #fff5e6;
    border-left: 4px solid #ed8936;
    border-radius: 4px;
}

.info-notice p {
    color: #744210;
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.info-notice a {
    color: #c05621;
    font-weight: 600;
    text-decoration: underline;
}

.thanks-resources {
    padding: 3rem 0;
    background-color: #f7fafc;
}

.thanks-resources h2 {
    font-size: 1.875rem;
    color: #1a365d;
    text-align: center;
    margin-bottom: 3rem;
}

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

.resource-card {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.resource-card h3 {
    font-size: 1.25rem;
    color: #2c5282;
    margin-bottom: 1rem;
}

.resource-card p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-proof {
    padding: 3rem 0;
    background-color: #ffffff;
}

.social-proof h2 {
    font-size: 1.75rem;
    color: #1a365d;
    text-align: center;
    margin-bottom: 2rem;
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-block {
    padding: 1.5rem;
    background-color: #f7fafc;
    border-left: 4px solid #2c5282;
    border-radius: 4px;
}

.testimonial-block p {
    font-style: italic;
    color: #4a5568;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.testimonial-block cite {
    font-style: normal;
    color: #718096;
    font-size: 0.9375rem;
    font-weight: 600;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 0;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

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

.legal-content {
    color: #4a5568;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: #2c5282;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.125rem;
    color: #2d3748;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #2c5282;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1a365d;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9375rem;
}

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

.data-table th {
    background-color: #f7fafc;
    color: #2d3748;
    font-weight: 600;
}

.data-table td {
    color: #4a5568;
}

.simple-list {
    list-style: disc;
    padding-left: 1.5rem;
}

.simple-list li {
    margin-bottom: 0.5rem;
}

/* Pricing Intro */
.pricing-intro {
    padding: 2rem 0;
    background-color: #f7fafc;
}

/* Certifications */
.certifications-split {
    padding: 3rem 0;
    background-color: #ffffff;
}

/* Tablet and Up */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        gap: 2rem;
    }

    .nav-links li {
        border-bottom: none;
    }

    .nav-links a {
        padding: 0;
    }

    .nav-toggle {
        display: none;
    }

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

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

    .split-content {
        padding: 3rem 2.5rem;
    }

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

    .hero-split h1 {
        font-size: 2.75rem;
    }

    .hero-cta-group {
        flex-direction: row;
    }

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

    .service-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .benefits-layout {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-block {
        flex: 0 0 calc(50% - 1rem);
    }

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

    .value-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .approach-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-block {
        flex: 0 0 calc(50% - 1rem);
    }

    .service-detail-split {
        flex-direction: row;
        gap: 3rem;
    }

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

    .service-info {
        flex: 1.5;
    }

    .service-pricing {
        flex: 1;
    }

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

    .guarantee-block {
        flex: 0 0 calc(50% - 1rem);
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

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

    .cookie-content p {
        text-align: left;
        margin-right: 2rem;
    }

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

    .resource-card {
        flex: 1;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero-split h1 {
        font-size: 3.25rem;
    }

    .service-card {
        flex: 0 0 calc(33.333% - 1.5rem);
    }

    .benefits-layout {
        flex-wrap: nowrap;
    }

    .values-grid {
        flex-wrap: nowrap;
    }

    .approach-steps {
        flex-wrap: nowrap;
    }

    .guarantees-grid {
        flex-wrap: nowrap;
    }
}
