/* 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;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

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

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

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

.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: #1e293b;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: #475569;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2563eb;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 600px;
}

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

.hero-left {
    background-color: #f8fafc;
    padding: 60px 40px;
}

.hero-content {
    max-width: 540px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #0f172a;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 32px;
}

.hero-right {
    background-color: #e2e8f0;
    overflow: hidden;
}

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

/* Buttons and CTAs */
.cta-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #1d4ed8;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #2563eb;
    color: #ffffff;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    background-color: #e2e8f0;
    color: #475569;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-card {
    width: 100%;
    background-color: #f1f5f9;
    color: #1e293b;
    padding: 12px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-card:hover {
    background-color: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

.btn-service {
    background-color: #2563eb;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.btn-service:hover {
    background-color: #1d4ed8;
}

.btn-submit {
    width: 100%;
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.link-inline {
    color: #2563eb;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: #1d4ed8;
}

/* Intro Section */
.intro-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.intro-section h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #0f172a;
}

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

/* Split Content Section */
.split-content-section {
    display: flex;
    min-height: 500px;
}

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

.split-image,
.split-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-image {
    background-color: #f1f5f9;
    overflow: hidden;
}

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

.split-text {
    padding: 60px 50px;
    background-color: #ffffff;
}

.split-text h3 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #0f172a;
}

.split-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 20px;
}

.split-text ul.checklist {
    list-style: none;
    margin: 24px 0;
}

.split-text ul.checklist li {
    padding-left: 32px;
    margin-bottom: 12px;
    position: relative;
    color: #475569;
}

.split-text ul.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 20px;
}

/* Cards Showcase Section */
.cards-showcase {
    padding: 100px 20px;
    background-color: #f8fafc;
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #0f172a;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 36px 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-icon {
    color: #2563eb;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #0f172a;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 20px;
}

.card-price {
    font-size: 20px;
    font-weight: 700;
    color: #2563eb;
    margin: 20px 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.testimonials-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #0f172a;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #f8fafc;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #1e293b;
}

/* CTA Section Inline */
.cta-section-inline {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    color: #e0e7ff;
    margin-bottom: 32px;
}

.cta-white {
    display: inline-block;
    background-color: #ffffff;
    color: #2563eb;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: #1d4ed8;
}

/* Approach Section */
.approach-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.approach-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #0f172a;
}

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

.approach-item {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 260px;
}

.approach-number {
    font-size: 48px;
    font-weight: 700;
    color: #e0e7ff;
    margin-bottom: 16px;
}

.approach-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0f172a;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
}

/* Form Section */
.form-section {
    padding: 100px 20px;
    background-color: #f8fafc;
}

.form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: #0f172a;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #64748b;
    margin-bottom: 48px;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    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: #2563eb;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.main-footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 60px 20px 20px;
}

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

.footer-col {
    flex: 1 1 200px;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 14px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 90;
}

.sticky-cta-btn {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.5);
    color: #ffffff;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 20px;
    z-index: 200;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
    font-size: 15px;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

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

/* Page Hero */
.page-hero {
    padding: 80px 20px;
    background-color: #f8fafc;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #0f172a;
}

.hero-lead {
    font-size: 20px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

/* Values Section */
.values-section {
    padding: 100px 20px;
    background-color: #f8fafc;
}

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #0f172a;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #0f172a;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
}

/* Team Section */
.team-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #0f172a;
}

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

.team-member {
    flex: 1 1 calc(25% - 30px);
    min-width: 220px;
    text-align: center;
}

.team-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #e2e8f0;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 20px;
    margin-bottom: 6px;
    color: #0f172a;
}

.team-role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
}

.stats-list {
    list-style: none;
    margin: 24px 0;
}

.stats-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 17px;
    color: #475569;
}

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

.stats-list strong {
    color: #0f172a;
}

/* Services Detailed */
.services-detailed {
    padding: 60px 20px 100px;
}

.service-detailed {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
    align-items: center;
}

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

.service-content {
    flex: 1 1 60%;
}

.service-image {
    flex: 1 1 40%;
}

.service-image img {
    border-radius: 12px;
    width: 100%;
}

.service-detailed h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #0f172a;
}

.service-price-tag {
    display: inline-block;
    background-color: #dbeafe;
    color: #1d4ed8;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

.service-description {
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 28px;
}

.service-detailed h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #0f172a;
}

.service-detailed ul {
    list-style-position: inside;
    margin-bottom: 20px;
}

.service-detailed ul li {
    padding: 6px 0;
    color: #64748b;
    font-size: 16px;
}

/* Comparison Section */
.comparison-section {
    padding: 100px 20px;
    background-color: #f8fafc;
}

.comparison-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #0f172a;
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
}

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

.comparison-row.header {
    background-color: #f1f5f9;
    font-weight: 700;
}

.comparison-cell {
    flex: 1;
    padding: 20px;
    font-size: 16px;
}

.comparison-cell:first-child {
    border-right: 1px solid #e2e8f0;
}

/* FAQ Section */
.faq-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.faq-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #0f172a;
}

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

.faq-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0f172a;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
}

/* Contact Page */
.contact-split-section {
    padding: 60px 20px 100px;
}

.contact-split {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1 1 35%;
}

.contact-form-wrapper {
    flex: 1 1 65%;
}

.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #0f172a;
}

.contact-form-wrapper p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 32px;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
}

.contact-note {
    background-color: #fef3c7;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
    margin-top: 32px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: #78350f;
}

/* Info Boxes Section */
.info-boxes-section {
    padding: 80px 20px;
    background-color: #f8fafc;
}

.info-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.info-box {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 260px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.info-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0f172a;
}

.info-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
}

/* Map Placeholder */
.map-placeholder {
    padding: 80px 20px;
    background-color: #ffffff;
}

.map-placeholder h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #0f172a;
}

.map-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f8fafc;
    border-radius: 12px;
    text-align: center;
}

.map-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 12px;
}

.map-note {
    font-size: 14px;
    color: #64748b;
    font-style: italic;
}

/* Thanks Page */
.thanks-hero {
    padding: 100px 20px;
    background-color: #f8fafc;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    color: #10b981;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #0f172a;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 16px;
}

.thanks-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 16px;
}

.thanks-note {
    background-color: #fef3c7;
    padding: 16px;
    border-radius: 8px;
    margin: 24px 0;
    font-size: 15px;
    color: #78350f;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* What Happens Next Section */
.what-happens-next {
    padding: 80px 20px;
    background-color: #ffffff;
}

.what-happens-next h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #0f172a;
}

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

.step-item {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 260px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #dbeafe;
    color: #1d4ed8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0f172a;
}

.step-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
}

/* Legal Page */
.legal-page {
    padding: 60px 20px 100px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #0f172a;
}

.update-date {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #1e293b;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #334155;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 10px;
    color: #475569;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 16px 0 24px 24px;
    line-height: 1.8;
}

.legal-page ul li {
    margin-bottom: 8px;
    color: #475569;
}

.legal-page strong {
    color: #1e293b;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: none;
        gap: 0;
    }

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

    .nav-menu li {
        margin: 12px 0;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .split-content-section,
    .split-content-section.reverse {
        flex-direction: column;
    }

    .split-text {
        padding: 40px 30px;
    }

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

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

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

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

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

    .sticky-cta-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
}

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

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

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

    .intro-section h2 {
        font-size: 28px;
    }

    .service-card,
    .testimonial-card,
    .approach-item,
    .value-item,
    .faq-item,
    .info-box {
        flex: 1 1 100%;
    }

    .contact-form {
        padding: 28px 20px;
    }

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
