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

:root {
    --primary-color: #4f46e5;
    --primary-dark: #3730a3;
    --primary-light: #6366f1;
    --secondary-color: #7c3aed;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

.content-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.split-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
}

.split-left,
.split-right {
    flex: 1;
    min-width: 0;
}

.main-nav {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

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

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

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    padding: 20px;
}

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

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 12px 0;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.nav-menu a:last-child {
    border-bottom: none;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    display: none;
}

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

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

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

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

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-split {
    min-height: 500px;
    padding: 60px 0;
}

.hero-split .split-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    padding: 20px 0;
}

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

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-image {
    padding: 20px 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.value-proposition {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.value-content {
    padding: 20px 0;
}

.value-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.value-content p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.split-left img,
.split-right img {
    width: 100%;
    height: auto;
    display: block;
}

.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.methodology-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header.centered {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.methodology-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.method-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
}

.method-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-light);
    opacity: 0.3;
    margin-bottom: 10px;
}

.method-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.method-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.services-showcase {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.services-intro {
    padding: 20px 0;
}

.services-intro h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.services-intro p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 20px 0;
}

.service-item {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.service-header h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    flex: 1;
    min-width: 200px;
}

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

.service-item p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-select-service {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--primary-dark);
}

.case-results {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.results-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.result-card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
}

.result-metric {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.result-card p {
    color: var(--text-gray);
    font-size: 1.05rem;
}

.testimonials-split {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.testimonial-content {
    padding: 20px 0;
}

.testimonial-content h2 {
    font-size: 1.9rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.testimonial {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--text-dark);
    margin-bottom: 5px;
}

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

.testimonial-visual {
    padding: 20px 0;
}

.form-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.form-intro {
    padding: 20px 0;
}

.form-intro h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.badge-item {
    color: var(--success-color);
    font-weight: 500;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

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

.checkbox-group span {
    flex: 1;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
}

.why-us {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.why-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-item {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.why-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.why-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

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

.footer-col p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 90;
}

.sticky-cta-btn {
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.cta-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: var(--primary-dark);
}

.cta-primary.large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

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

.about-story {
    padding: 80px 0;
}

.story-content {
    padding: 20px 0;
}

.story-content h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.story-content p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.mission-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.mission-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.large-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

.values-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
}

.section-title.centered {
    text-align: center;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.value-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.team-expertise {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.expertise-content {
    padding: 20px 0;
}

.expertise-content h2 {
    font-size: 1.9rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.expertise-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.expertise-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.approach-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.approach-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.approach-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.approach-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-light);
    opacity: 0.4;
}

.approach-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
}

.approach-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.services-detail {
    padding: 60px 0;
}

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-split {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-detail-left {
    padding: 20px 0;
}

.service-detail-left h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-detail-left h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: var(--text-dark);
}

.service-includes {
    list-style: none;
    margin-bottom: 30px;
}

.service-includes li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-gray);
    line-height: 1.6;
}

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

.service-detail-right {
    padding: 20px 0;
}

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

.services-comparison {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.comparison-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.comparison-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.comparison-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.services-cta {
    padding: 80px 0;
}

.contact-section {
    padding: 60px 0;
}

.contact-info {
    padding: 20px 0;
}

.contact-info h2 {
    font-size: 1.9rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

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

.contact-detail {
    flex: 1;
}

.contact-detail h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-detail p {
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-detail a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.contact-note {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    margin-top: 30px;
}

.contact-note p {
    color: var(--text-gray);
    line-height: 1.6;
}

.map-placeholder {
    padding: 20px 0;
}

.map-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.faq-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

.faq-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.thanks-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--bg-white);
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.thanks-details {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.service-selected {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.service-selected h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-selected p {
    font-size: 1.2rem;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.thanks-note {
    font-size: 0.95rem;
    opacity: 0.9;
}

.thanks-note a {
    color: var(--bg-white);
    text-decoration: underline;
}

.while-waiting {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.resources-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.resource-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.resource-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.resource-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.resource-card a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 60px 0;
    background-color: var(--bg-white);
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    padding-top: 20px;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: var(--text-dark);
}

.legal-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0 15px 25px;
    color: var(--text-gray);
    line-height: 1.8;
}

.legal-section ul li {
    margin-bottom: 10px;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--primary-dark);
}

.gdpr-table,
.cookie-table {
    overflow-x: auto;
    margin: 25px 0;
}

.gdpr-table table,
.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.gdpr-table th,
.cookie-table th {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.gdpr-table td,
.cookie-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-gray);
}

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

.centered {
    text-align: center;
}

@media (min-width: 768px) {
    .split-container {
        flex-direction: row;
        gap: 50px;
        align-items: center;
    }

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

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
        gap: 30px;
    }

    .nav-menu a {
        padding: 0;
        border-bottom: none;
    }

    .nav-toggle {
        display: none;
    }

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

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

    .method-card {
        flex: 1 1 calc(50% - 15px);
    }

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

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

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

    .footer-col {
        flex: 1;
    }

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

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

    .approach-item {
        flex: 1 1 calc(50% - 15px);
    }

    .service-detail-split {
        flex-direction: row;
        gap: 50px;
        align-items: center;
    }

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

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

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

    .faq-item {
        flex: 1 1 calc(50% - 12.5px);
    }

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

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

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

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

    .method-card {
        flex: 1;
    }

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

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

    .approach-item {
        flex: 1;
    }
}
