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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    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 Styles */
.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;
}

/* Header Styles */
.main-header {
    background-color: #1a202c;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.main-nav {
    display: none;
}

.main-nav a {
    color: #e2e8f0;
    margin-left: 30px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #60a5fa;
}

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

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

/* Section Backgrounds - Stacked Sections Flow */
.dark-bg {
    background-color: #1e293b;
    color: #f1f5f9;
    padding: 80px 0;
}

.light-bg {
    background-color: #f8fafc;
    color: #334155;
    padding: 80px 0;
}

.offset-bg {
    background-color: #e0f2fe;
    color: #0c4a6e;
    padding: 80px 0;
}

.dark-accent {
    background-color: #0f172a;
    color: #e2e8f0;
    padding: 80px 0;
}

.accent-bg {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 80px 0;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 100px;
}

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

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.95;
}

.page-hero {
    padding: 60px 0;
    text-align: center;
}

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

.legal-hero {
    padding: 60px 0 40px;
}

.legal-hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.legal-date {
    font-size: 0.95rem;
    opacity: 0.8;
}

.thanks-hero {
    padding: 80px 0;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

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

.thanks-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
}

/* Typography */
h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: 600;
}

h4 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 12px;
    font-weight: 600;
}

p {
    margin-bottom: 20px;
}

/* Buttons and CTAs */
.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-primary {
    background-color: #3b82f6;
    color: #ffffff;
}

.cta-primary:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

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

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

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

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

/* Intro Section */
.intro-section {
    padding: 70px 0;
}

.intro-section h2 {
    margin-bottom: 30px;
}

.intro-section p {
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Split Layout */
.split-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.split-image,
.split-text {
    flex: 1;
}

.split-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.split-text h2,
.split-text h3 {
    margin-bottom: 20px;
}

.split-text p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.visual-section {
    padding: 90px 0;
}

/* Services Grid */
.services-preview {
    padding: 90px 0;
}

.section-intro {
    font-size: 1.15rem;
    margin-bottom: 50px;
    max-width: 700px;
    opacity: 0.9;
}

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

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 35px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card.featured {
    border-color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.1);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #3b82f6;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-top {
    background-color: #f59e0b;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

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

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #60a5fa;
    margin: 20px 0;
}

.btn-select,
.btn-select-full {
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-select:hover,
.btn-select-full:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
}

/* Service Detailed Pages */
.service-detailed {
    padding: 60px 0;
}

.service-full {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
}

.featured-service {
    border-color: #3b82f6;
}

.service-header {
    margin-bottom: 30px;
}

.service-title-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.service-tagline {
    font-size: 1.15rem;
    opacity: 0.85;
}

.price-tag {
    background-color: #3b82f6;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-block;
}

.service-body {
    margin-bottom: 30px;
}

.service-description ul,
.service-ideal {
    margin-bottom: 25px;
}

.service-description ul {
    list-style: none;
    padding-left: 0;
}

.service-description ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-description ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* Testimonials */
.trust-section {
    padding: 80px 0;
}

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

.testimonial {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.quote {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
    color: #1e293b;
}

.author {
    font-weight: 600;
    color: #64748b;
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits-section {
    padding: 90px 0;
}

.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.benefits-list li {
    margin-bottom: 30px;
}

.benefits-list strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #0c4a6e;
}

.benefits-list p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.benefits-image img {
    border-radius: 12px;
}

/* Process Section */
.process-section {
    padding: 90px 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background-color: #3b82f6;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step h3 {
    margin-bottom: 10px;
}

.step p {
    opacity: 0.9;
    line-height: 1.7;
}

/* Forms */
.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: inherit;
    transition: border-color 0.3s ease;
}

.light-bg .form-group input,
.light-bg .form-group select,
.light-bg .form-group textarea {
    background-color: #ffffff;
    border-color: #cbd5e1;
    color: #1e293b;
}

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

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

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

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.btn-submit {
    background-color: #10b981;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #059669;
    transform: translateY(-2px);
}

/* Contact Page */
.contact-info {
    padding: 70px 0;
}

.contact-layout {
    max-width: 700px;
}

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

.contact-item h3 {
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-item a {
    color: #2563eb;
    font-weight: 600;
}

.small-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
}

.contact-note {
    background-color: rgba(59, 130, 246, 0.1);
    border-left: 4px solid #3b82f6;
    padding: 20px;
    border-radius: 6px;
    margin-top: 30px;
}

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

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

/* FAQ Section */
.faq-section {
    padding: 70px 0;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    margin-bottom: 12px;
    color: #1e293b;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Map Section */
.map-section {
    padding: 70px 0;
}

.map-placeholder {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 60px 30px;
    text-align: center;
    margin-top: 30px;
}

.map-placeholder p {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

/* Thanks Page */
.thanks-details {
    padding: 70px 0;
}

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

.step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.step-item h3 {
    margin-bottom: 12px;
    color: #1e293b;
}

.step-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 0;
}

.thanks-service-info {
    padding: 70px 0;
}

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

.service-details {
    margin-top: 25px;
}

.service-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0c4a6e;
    margin-bottom: 15px;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
}

.thanks-resources {
    padding: 70px 0;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.resource-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    color: inherit;
}

.resource-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.resource-card h3 {
    margin-bottom: 10px;
}

.resource-card p {
    margin-bottom: 0;
    opacity: 0.85;
}

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

.contact-email {
    text-align: center;
}

.contact-email a {
    font-size: 1.3rem;
    font-weight: 600;
}

/* About Page */
.story-section {
    padding: 70px 0;
}

.story-section p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.mission-section {
    padding: 90px 0;
}

.split-layout.reverse {
    flex-direction: column-reverse;
}

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

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

.value-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    color: #1e293b;
    margin-bottom: 12px;
}

.value-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

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

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

.approach-item h3 {
    margin-bottom: 12px;
}

.approach-item p {
    opacity: 0.9;
    line-height: 1.7;
}

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

.stats-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.stat {
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.05rem;
    color: #64748b;
}

.philosophy-section {
    padding: 90px 0;
}

.custom-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.custom-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.custom-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0c4a6e;
    font-weight: 700;
}

.commitment-section {
    padding: 80px 0;
    text-align: center;
}

.commitment-section p {
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Services Page */
.services-intro {
    padding: 60px 0;
}

.comparison-section {
    padding: 70px 0;
}

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

.helper-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.helper-item h3 {
    margin-bottom: 12px;
}

.helper-item p {
    margin-bottom: 0;
    opacity: 0.9;
}

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

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    text-align: center;
    margin-bottom: 15px;
}

.cta-content > p {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 40px;
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
}

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

/* Final CTA */
.final-cta {
    padding: 80px 0;
    text-align: center;
}

.final-cta p {
    font-size: 1.15rem;
    margin-bottom: 30px;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 20px;
}

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

.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: #60a5fa;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e40af;
    color: #ffffff;
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

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

.sticky-cta-content span {
    font-weight: 600;
    font-size: 1rem;
}

.btn-sticky {
    background-color: #ffffff;
    color: #1e40af;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #f1f5f9;
    transform: scale(1.05);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

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

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

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

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

.btn-accept {
    background-color: #10b981;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #059669;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .main-nav {
        display: flex;
    }

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

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

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

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

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

    .service-card {
        flex: 0 0 calc(50% - 15px);
    }

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

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

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

    .testimonial {
        flex: 0 0 calc(50% - 15px);
    }

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

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

    .step {
        flex: 0 0 calc(50% - 20px);
    }

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

    .step-item {
        flex: 0 0 calc(50% - 15px);
    }

    .resource-links {
        flex-direction: row;
    }

    .resource-card {
        flex: 1;
    }

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

    .value-card {
        flex: 0 0 calc(50% - 12.5px);
    }

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

    .stat {
        flex: 1;
    }

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

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

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

    .helper-item {
        flex: 1;
    }

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

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

    .footer-col {
        flex: 0 0 calc(25% - 30px);
    }

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

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

    .service-card {
        flex: 0 0 calc(33.333% - 20px);
    }

    .testimonial {
        flex: 0 0 calc(33.333% - 20px);
    }

    .step {
        flex: 0 0 calc(25% - 30px);
    }

    .step-item {
        flex: 0 0 calc(33.333% - 20px);
    }

    .approach-item {
        flex: 0 0 calc(33.333% - 20px);
    }
}