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

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #159895;
    --accent-color: #57c5b6;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #7a7a7a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2d6a4f;
    --warning-color: #e07a5f;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

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

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

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

.nav-link {
    padding: 0.75rem 1.5rem;
    display: block;
    color: var(--text-dark);
    transition: background-color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-split,
.section-split {
    display: flex;
    flex-direction: column;
}

.split-left,
.split-right {
    flex: 1;
    padding: 2rem 1.5rem;
}

.hero-split .split-left {
    padding: 3rem 1.5rem;
}

.hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero-lead {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-image,
.section-image {
    min-height: 300px;
    overflow: hidden;
}

.hero-image img,
.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-light,
.btn-submit,
.btn-service {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #134a5f;
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

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

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-light {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-light:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-submit {
    background-color: var(--success-color);
    color: white;
    width: 100%;
}

.btn-submit:hover {
    background-color: #1d4f38;
}

.btn-service {
    background-color: var(--accent-color);
    color: white;
    width: 100%;
    margin-top: 1rem;
}

.btn-service:hover {
    background-color: #45a895;
}

.content-block {
    max-width: 600px;
}

.content-block h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.content-block p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.benefit-list,
.check-list,
.tech-list {
    list-style: none;
    margin: 1.5rem 0;
}

.benefit-list li,
.check-list li,
.tech-list li {
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.benefit-list li:before,
.check-list li:before,
.tech-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.section-centered {
    padding: 3rem 1.5rem;
    background-color: var(--bg-light);
}

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

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

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.process-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.process-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.process-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.process-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.process-card p {
    color: var(--text-light);
}

.cta-banner,
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3rem 1.5rem;
    text-align: center;
    color: white;
}

.cta-content h2,
.cta-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p,
.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.services-compact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    position: relative;
}

.service-item.featured {
    border-color: var(--accent-color);
    box-shadow: 0 4px 16px rgba(87, 197, 182, 0.2);
}

.badge {
    position: absolute;
    top: -12px;
    right: 1rem;
    background-color: var(--warning-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.service-item p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.testimonial-section {
    padding: 3rem 1.5rem;
    background-color: var(--bg-light);
}

.testimonial-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.form-section {
    padding: 3rem 1.5rem;
}

.form-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.trust-signals {
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.trust-item svg {
    color: var(--success-color);
    flex-shrink: 0;
}

.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    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: var(--primary-color);
}

.form-disclaimer {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
    text-align: center;
}

.alternate-bg {
    background-color: var(--bg-light);
}

.faq-section {
    padding: 3rem 1.5rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.faq-item {
    background: white;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-color);
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
}

.main-footer {
    background-color: #2a2a2a;
    color: #e0e0e0;
    padding: 3rem 1.5rem 1rem;
}

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

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

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

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

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

.footer-col ul li a {
    color: #b0b0b0;
    font-size: 0.875rem;
}

.footer-col ul li a:hover {
    color: white;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: var(--success-color);
    color: white;
}

.btn-cookie-accept:hover {
    background-color: #1d4f38;
}

.btn-cookie-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 1.5rem 3rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.values-section,
.team-section,
.stats-section {
    padding: 3rem 1.5rem;
}

.values-section {
    background-color: var(--bg-light);
}

.values-section h2,
.team-section h2,
.stats-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-light);
}

.team-member {
    text-align: center;
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.member-role {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
}

.stat-large {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 1rem;
    opacity: 0.9;
}

.certifications h3 {
    margin: 1.5rem 0 0.75rem;
    font-size: 1.125rem;
}

.certifications ul {
    list-style: none;
}

.certifications ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.certifications ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.services-main {
    padding: 3rem 1.5rem;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--text-light);
}

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

.service-detail-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.service-detail-card.featured-service {
    border-color: var(--accent-color);
    box-shadow: 0 4px 20px rgba(87, 197, 182, 0.2);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--warning-color);
    color: white;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.service-header {
    background-color: var(--bg-light);
    padding: 2rem;
    text-align: center;
}

.service-header h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.price-note {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.service-body {
    padding: 2rem;
}

.service-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-body h3 {
    font-size: 1.125rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--text-dark);
}

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

.service-features li {
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--text-light);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.comparison-section {
    padding: 3rem 1.5rem;
    background-color: var(--bg-light);
}

.comparison-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background-color: var(--bg-light);
}

.process-section {
    padding: 3rem 1.5rem;
}

.process-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timeline-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
}

.faq-services {
    padding: 3rem 1.5rem;
}

.faq-services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-split {
    display: flex;
    flex-direction: column;
}

.contact-info-section {
    padding: 3rem 1.5rem;
    background-color: var(--bg-light);
}

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

.contact-method {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}

.additional-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
}

.additional-info h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.additional-info ul {
    list-style: none;
}

.additional-info ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.additional-info ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.contact-form-wrapper {
    padding: 3rem 1.5rem;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.checkbox-group label {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-weight: normal;
}

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

.form-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
}

.map-section {
    padding: 3rem 1.5rem;
    background-color: var(--bg-light);
}

.map-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.map-placeholder {
    max-width: 800px;
    margin: 2rem auto;
    background: white;
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.map-info p {
    text-align: left;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.thanks-section {
    padding: 4rem 1.5rem;
    text-align: center;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--success-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-icon svg {
    color: white;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.selected-service-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color);
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.service-note {
    color: var(--text-muted);
}

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

.next-steps h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    gap: 1rem;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.step-item p {
    color: var(--text-light);
}

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

.additional-resources {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.additional-resources h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.additional-resources ul {
    list-style: none;
    margin-top: 1rem;
}

.additional-resources ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.additional-resources ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.contact-reminder {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-top: 2rem;
}

.legal-page {
    padding: 3rem 1.5rem;
}

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

.updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1rem 2rem;
    color: var(--text-light);
}

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

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

.cookie-table th {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: row;
        position: static;
        border: none;
        padding: 0;
        gap: 2rem;
    }

    .nav-toggle {
        display: none;
    }

    .hero-split,
    .section-split {
        flex-direction: row;
    }

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

    .split-left,
    .split-right {
        width: 50%;
    }

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

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

    .process-card {
        width: calc(50% - 1rem);
    }

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

    .service-item {
        width: calc(33.333% - 1rem);
    }

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

    .testimonial-card {
        width: calc(50% - 1rem);
    }

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

    .form-info,
    .form-container {
        width: 50%;
    }

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

    .faq-item {
        width: calc(50% - 0.75rem);
    }

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

    .footer-col {
        width: calc(25% - 1.5rem);
    }

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

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

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

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

    .team-member {
        width: calc(50% - 1rem);
    }

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

    .stat-box {
        width: calc(50% - 1rem);
    }

    .service-detail-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-detail-card {
        width: calc(50% - 1rem);
    }

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

    .contact-info-section,
    .contact-form-wrapper {
        width: 50%;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

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

    .step-item {
        width: calc(33.333% - 1rem);
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto 1rem;
    }
}

@media (min-width: 1024px) {
    .process-card {
        width: calc(25% - 1.5rem);
    }

    .value-card {
        width: calc(25% - 1.5rem);
    }

    .team-member {
        width: calc(25% - 1.5rem);
    }

    .stat-box {
        width: calc(25% - 1.5rem);
    }
}