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

html {
    scroll-behavior: smooth;
}

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

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

a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1557b0;
}

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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a73e8;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1a73e8;
    border-bottom-color: #1a73e8;
}

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

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

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 20px;
}

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

.mobile-menu a {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #2c3e50;
    font-weight: 500;
}

/* Split Screen Layouts */
.hero-split,
.intro-split,
.problem-split,
.services-split,
.testimonial-split,
.about-hero-split,
.values-split,
.approach-split,
.contact-split-hero {
    display: flex;
    min-height: 500px;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.hero-image,
.intro-image,
.problem-image,
.services-image,
.testimonial-image {
    padding: 0;
    overflow: hidden;
}

.hero-image img,
.intro-image img,
.problem-image img,
.services-image img,
.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #4a5568;
}

/* Reverse Split */
.reverse {
    flex-direction: row-reverse;
}

/* Buttons and CTAs */
.cta-primary,
.cta-secondary,
.cta-tertiary,
.cta-primary-large,
.cta-submit {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.cta-primary,
.cta-primary-large,
.cta-submit {
    background: #1a73e8;
    color: #ffffff;
}

.cta-primary:hover,
.cta-primary-large:hover,
.cta-submit:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.cta-primary-large {
    padding: 18px 40px;
    font-size: 18px;
}

.cta-secondary {
    background: transparent;
    color: #1a73e8;
    border: 2px solid #1a73e8;
}

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

.cta-tertiary {
    background: #f0f4f8;
    color: #1a73e8;
}

.cta-tertiary:hover {
    background: #e0e8f0;
}

/* Value Grid Section */
.value-grid {
    padding: 80px 0;
    background: #f8fafc;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.section-title-center {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.cards-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-icon {
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

/* Problem Section */
.label {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.problem-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.problem-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    color: #4a5568;
    line-height: 1.6;
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-size: 24px;
    font-weight: 700;
}

/* Approach Steps */
.approach-section {
    padding: 80px 0;
    background: #ffffff;
}

.approach-steps {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.step-item {
    flex: 1;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #e0e8f0;
    margin-bottom: 15px;
}

.step-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.step-connector {
    width: 40px;
    height: 2px;
    background: #e0e8f0;
    margin-top: 60px;
    flex-shrink: 0;
}

/* Services Section */
.services-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.service-item {
    padding: 25px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.service-item p {
    color: #4a5568;
    margin-bottom: 12px;
}

.price {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: #1a73e8;
}

/* Results Section */
.results-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: #ffffff;
}

.results-section .section-title-center {
    color: #ffffff;
}

.results-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.result-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 40px 20px;
}

.result-number {
    font-size: 56px;
    font-weight: 800;
    color: #1a73e8;
    margin-bottom: 15px;
}

.result-card p {
    color: #cbd5e0;
    line-height: 1.6;
}

/* Testimonial Section */
.testimonial-content {
    max-width: 600px;
}

.quote-icon {
    margin-bottom: 30px;
}

blockquote p {
    font-size: 22px;
    line-height: 1.7;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 20px;
}

cite {
    font-size: 16px;
    font-weight: 600;
    color: #1a73e8;
    font-style: normal;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background: #f8fafc;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 18px;
    color: #4a5568;
}

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

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #1a73e8;
}

textarea {
    resize: vertical;
}

.form-privacy {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.cta-submit {
    width: 100%;
    font-size: 18px;
    padding: 16px;
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: #ffffff;
    text-align: center;
}

.trust-section h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.trust-item span {
    font-weight: 600;
    color: #4a5568;
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #cbd5e0;
    padding: 60px 0 20px;
}

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

.footer-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

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

.footer-col ul li a {
    color: #cbd5e0;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    text-align: center;
}

.footer-bottom p {
    color: #718096;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    background: #1a73e8;
    color: #ffffff;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(26, 115, 232, 0.4);
    display: block;
}

.sticky-btn:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

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

.cookie-content a {
    color: #1a73e8;
    text-decoration: underline;
}

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

.btn-cookie,
.btn-cookie-secondary {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: #1a73e8;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #1557b0;
}

.btn-cookie-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

/* Services Page Specific */
.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

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

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

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-detail-left,
.service-detail-right {
    flex: 1;
}

.service-label {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-detail-left h2,
.service-detail-right h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.price-tag {
    display: inline-block;
    font-size: 32px;
    font-weight: 800;
    color: #1a73e8;
    margin-bottom: 20px;
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 30px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #4a5568;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 18px;
}

.service-timeline {
    padding: 15px;
    background: #f0f4f8;
    border-radius: 6px;
    margin-top: 20px;
}

.ideal-for,
.case-example,
.tech-stack,
.transformation-note,
.consulting-packages {
    background: #f8fafc;
    padding: 25px;
    border-radius: 8px;
    margin-top: 25px;
}

.ideal-for h4,
.case-example h4,
.tech-stack h4,
.transformation-note h4,
.consulting-packages h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.consulting-packages ul {
    list-style: none;
}

.consulting-packages li {
    padding: 8px 0;
    color: #4a5568;
}

.comparison-section {
    padding: 80px 0;
    background: #f8fafc;
}

.comparison-table {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.comparison-row {
    display: flex;
}

.comparison-row.header {
    background: #1a73e8;
    color: #ffffff;
    font-weight: 600;
}

.comparison-cell {
    flex: 1;
    padding: 20px;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-row:last-child .comparison-cell {
    border-bottom: none;
}

.comparison-cell.label {
    font-weight: 600;
    background: #f8fafc;
}

.cta-section-alt,
.cta-section-about {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.cta-section-alt h2,
.cta-section-about h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section-alt p,
.cta-section-about p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-section-alt .cta-primary-large,
.cta-section-about .cta-primary-large {
    background: #ffffff;
    color: #667eea;
}

.cta-section-alt .cta-primary-large:hover,
.cta-section-about .cta-primary-large:hover {
    background: #f0f4f8;
    color: #667eea;
}

/* About Page Specific */
.story-section {
    padding: 80px 0;
    background: #ffffff;
}

.story-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.story-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.values-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.value-item {
    margin-bottom: 35px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.team-section {
    padding: 80px 0;
    background: #f8fafc;
}

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 20px 20px 8px;
    color: #1a1a1a;
}

.role {
    display: block;
    font-size: 14px;
    color: #1a73e8;
    font-weight: 600;
    margin: 0 20px 12px;
}

.team-member p {
    padding: 0 20px 20px;
    color: #4a5568;
    line-height: 1.6;
}

.numbers-section {
    padding: 80px 0;
    background: #ffffff;
}

.numbers-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.number-card {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.big-number {
    font-size: 56px;
    font-weight: 800;
    color: #1a73e8;
    margin-bottom: 10px;
}

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

.approach-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.approach-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 30px;
}

.approach-list {
    list-style: none;
}

.approach-list li {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #4a5568;
    line-height: 1.7;
}

.approach-list li:last-child {
    border-bottom: none;
}

.approach-list strong {
    color: #1a1a1a;
}

.certifications-section {
    padding: 80px 0;
    background: #f8fafc;
}

.cert-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.cert-item {
    text-align: center;
    flex: 0 0 200px;
}

.cert-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: #1a73e8;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
}

.cert-item p {
    color: #4a5568;
}

/* Contact Page Specific */
.contact-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #4a5568;
}

.contact-info-box {
    background: #f8fafc;
    padding: 40px;
    border-radius: 8px;
}

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

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item svg {
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

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

.response-info {
    padding: 80px 0;
    background: #ffffff;
}

.response-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.response-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

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

.response-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

/* Thanks Page */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 30px;
}

.service-info {
    background: #f0f9ff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    color: #1a73e8;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #1a73e8;
    color: #ffffff;
}

.btn-primary:hover {
    background: #1557b0;
}

.btn-secondary {
    background: transparent;
    color: #1a73e8;
    border: 2px solid #1a73e8;
}

.btn-secondary:hover {
    background: #1a73e8;
    color: #ffffff;
}

.next-steps {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.next-steps h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.steps-list {
    padding-left: 25px;
}

.steps-list li {
    padding: 10px 0;
    color: #4a5568;
    line-height: 1.6;
}

/* Legal Pages */
.legal-page {
    padding: 80px 0;
}

.legal-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 40px;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-page p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #4a5568;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    padding-left: 40px;
}

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #4a5568;
}

.legal-date {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    font-style: italic;
    color: #718096;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

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

/* Responsive Design */
@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .problem-split,
    .services-split,
    .testimonial-split,
    .about-hero-split,
    .values-split,
    .approach-split,
    .contact-split-hero {
        flex-direction: column;
    }

    .reverse {
        flex-direction: column;
    }

    .approach-steps {
        flex-direction: column;
    }

    .step-connector {
        display: none;
    }

    .service-detail-split {
        flex-direction: column !important;
    }

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

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .section-title,
    .section-title-center {
        font-size: 28px;
    }

    .cards-wrapper,
    .results-grid,
    .team-grid,
    .numbers-grid {
        flex-direction: column;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

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