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

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

.btn-cookie-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #229954;
}

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

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.nav-menu li {
    padding: 0.75rem 2rem;
}

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    display: block;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #3498db;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 80vh;
}

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

.hero-left {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 2rem;
}

.hero-text-content {
    max-width: 600px;
}

.hero-text-content h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-lead {
    font-size: 1.2rem;
    color: #f8f9fa;
    margin-bottom: 2rem;
}

.hero-right {
    background: #f8f9fa;
    padding: 2rem;
}

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

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

.btn-primary {
    background: #ffffff;
    color: #667eea;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

.btn-primary-large {
    background: #667eea;
    color: #ffffff;
    font-size: 1.2rem;
    padding: 1.25rem 2.5rem;
}

.btn-primary-large:hover {
    background: #764ba2;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3);
}

.btn-text {
    color: #3498db;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-text:hover {
    gap: 0.75rem;
}

/* Split Container - Core Layout */
.split-container {
    display: flex;
    flex-direction: column;
}

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

.split-text,
.split-image,
.split-form {
    flex: 1;
    padding: 3rem 2rem;
}

.split-text {
    background: #ffffff;
}

.split-image {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.split-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.split-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Sections */
.intro-section,
.value-proposition,
.testimonials-section,
.process-section,
.form-section,
.final-cta {
    padding: 4rem 0;
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
}

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

/* Feature List */
.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Services Grid */
.services-preview {
    background: #f8f9fa;
    padding: 5rem 0;
}

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

.service-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.service-card.featured {
    border: 3px solid #667eea;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
}

.service-icon img {
    width: 50px;
    height: 50px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin: 1.5rem 0;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-select-service:hover {
    background: #764ba2;
    transform: translateY(-2px);
}

.badge,
.badge-large {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #e74c3c;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-large {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
}

/* Testimonials */
.testimonial-block {
    margin: 2rem 0;
}

.testimonial-block blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #34495e;
    border-left: 4px solid #667eea;
    padding-left: 2rem;
    margin: 0 0 1rem 0;
}

.testimonial-block cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #7f8c8d;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    opacity: 0.3;
}

.process-step h3 {
    font-size: 1.5rem;
    color: #2c3e50;
}

.process-step p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* CTA Sections */
.cta-section-inline,
.cta-about,
.cta-services {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Forms */
.split-form {
    background: #f8f9fa;
}

.main-form {
    max-width: 600px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #dfe6e9;
    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: #667eea;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #764ba2;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3);
}

.form-privacy {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #7f8c8d;
    text-align: center;
}

.form-benefits {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.check-icon {
    color: #27ae60;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1rem;
}

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    line-height: 1.6;
}

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

.footer-column ul li {
    padding: 0.5rem 0;
}

.footer-column a {
    color: #ecf0f1;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #34495e;
    margin-top: 2rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    padding: 1rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    display: none;
}

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

.sticky-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.sticky-content span {
    color: #ffffff;
    font-weight: 600;
}

.btn-sticky {
    padding: 0.75rem 2rem;
    background: #667eea;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #764ba2;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.hero-content-centered {
    max-width: 900px;
    margin: 0 auto;
}

.hero-content-centered h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-content-centered .hero-subtitle {
    font-size: 1.3rem;
    color: #f8f9fa;
}

/* About Page */
.about-intro {
    padding: 4rem 0;
}

.values-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

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

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

.value-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

.team-section {
    padding: 4rem 0;
}

.stats-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

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

.stat-item {
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.testimonials-long {
    padding: 5rem 0;
}

.testimonial-full {
    margin: 3rem 0;
}

.testimonial-full blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #34495e;
    border-left: 4px solid #667eea;
    padding-left: 2rem;
    margin: 0;
}

.testimonial-full cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #7f8c8d;
}

/* Services Page */
.services-intro {
    padding: 3rem 0;
    background: #f8f9fa;
}

.intro-text {
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.8;
    color: #34495e;
}

.services-detailed {
    padding: 4rem 0;
}

.service-detail-card {
    margin-bottom: 4rem;
}

.service-detail-card.featured-service {
    background: #f8f9fa;
    padding: 2rem 0;
}

.service-detail-card .split-text h2 {
    font-size: 2.2rem;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin: 1.5rem 0;
}

.service-description {
    font-size: 1.2rem;
    margin: 1.5rem 0;
    line-height: 1.7;
}

.detailed-list {
    list-style: none;
    margin: 1.5rem 0;
}

.detailed-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.detailed-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-detail-card h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.compact-card .split-text,
.compact-card .split-image {
    padding: 2rem;
}

.payment-info {
    background: #f8f9fa;
    padding: 4rem 0;
}

.payment-list {
    list-style: none;
    margin: 2rem 0;
}

.payment-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.payment-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.5rem;
}

/* Contact Page */
.contact-main {
    padding: 4rem 0;
}

.contact-info-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-item p {
    margin: 0;
    color: #7f8c8d;
}

.faq-quick {
    margin-top: 3rem;
}

.faq-quick h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.faq-quick p {
    margin-bottom: 1.5rem;
}

.map-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.map-placeholder {
    margin-top: 2rem;
    background: #dfe6e9;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Thanks Page */
.thanks-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.success-icon {
    font-size: 5rem;
    color: #27ae60;
    background: #ffffff;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-confirmation {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

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

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

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

.step-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
}

.step-icon {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #27ae60;
}

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

.step-item p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.thanks-cta {
    margin-top: 3rem;
}

.thanks-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.social-proof-thanks {
    background: #f8f9fa;
    padding: 4rem 0;
}

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

.stat-box {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
}

.stat-box strong {
    display: block;
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-box span {
    font-size: 1.1rem;
    color: #7f8c8d;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
}

.container-legal {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-legal h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.last-updated {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 3rem;
}

.container-legal h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.container-legal h3 {
    font-size: 1.3rem;
    color: #34495e;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.container-legal p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #34495e;
}

.container-legal ul,
.container-legal ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.container-legal li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #34495e;
}

.container-legal ul {
    list-style: disc;
}

.container-legal ol {
    list-style: decimal;
}

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

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

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #34495e;
}

.legal-back-link {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #dfe6e9;
}

.legal-back-link a {
    color: #3498db;
    font-weight: 600;
}

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

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

    .nav-menu li {
        padding: 0 1.5rem;
    }

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

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

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

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

    .service-card {
        flex: 0 0 calc(50% - 1rem);
    }

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

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

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

    .stat-item {
        flex: 0 0 calc(50% - 1rem);
    }

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

    .process-step {
        flex: 0 0 calc(50% - 1rem);
    }

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

    .footer-column {
        flex: 0 0 calc(50% - 1rem);
    }

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

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

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

    .step-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .stats-inline {
        flex-direction: row;
        justify-content: space-around;
    }

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

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

    .service-card {
        flex: 0 0 calc(33.333% - 1.5rem);
    }

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

    .stat-item {
        flex: 0 0 calc(25% - 1.5rem);
    }

    .footer-column {
        flex: 0 0 calc(25% - 1.5rem);
    }

    .step-item {
        flex: 0 0 calc(33.333% - 1.5rem);
    }
}
