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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

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

.nav {
    padding: 1rem 0;
}

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

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

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

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

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

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

.nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 80px 30px 30px;
    gap: 1.5rem;
    overflow-y: auto;
}

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

.nav-menu li a {
    display: block;
    padding: 0.75rem 0;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #d4557b;
}

/* Hero Sections */
.hero {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    padding: 4rem 0;
    text-align: center;
}

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

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #555;
}

.page-hero {
    background: linear-gradient(135deg, #e1bee7 0%, #ce93d8 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.lead {
    font-size: 1.125rem;
    color: #555;
    margin-top: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #d4557b;
    color: #fff;
}

.btn-primary:hover {
    background: #c2446b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 85, 123, 0.3);
}

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

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

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

/* Sections */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

section h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #444;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #666;
}

/* Philosophy Section */
.philosophy {
    background: #f9f9f9;
}

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

.philosophy-content p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.05rem;
}

/* Services Preview */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #d4557b;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1rem;
}

.price {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #d4557b;
    margin-top: 1rem;
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

/* Benefits Section */
.benefits {
    background: #fff;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #d4557b;
}

.benefit-item h3 {
    color: #d4557b;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    color: #666;
}

/* Process Section */
.process {
    background: #f5f5f5;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fce4ec;
    line-height: 1;
}

.step h3 {
    color: #d4557b;
}

.step p {
    color: #666;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #d4557b 0%, #c2446b 100%);
    color: #fff;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

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

.stat-label {
    font-size: 1.125rem;
    opacity: 0.95;
}

/* Testimonials */
.testimonials {
    background: #fff;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    color: #333;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #888;
    font-size: 0.9rem;
}

/* Industries Section */
.industries {
    background: #f9f9f9;
}

.industries-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.industry-card {
    background: #fff;
    padding: 1.75rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.industry-card h3 {
    color: #d4557b;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.industry-card p {
    color: #666;
}

/* FAQ Section */
.faq {
    background: #fff;
}

.faq-services {
    background: #f9f9f9;
}

.faq-contact {
    background: #fff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    background: #fff;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-icon {
    font-size: 1.5rem;
    color: #d4557b;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.7;
}

/* Trust Indicators */
.trust-indicators {
    background: #f5f5f5;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.trust-item h3 {
    color: #d4557b;
    margin-bottom: 0.75rem;
}

.trust-item p {
    color: #666;
}

/* CTA Sections */
.cta-final,
.cta-section {
    background: linear-gradient(135deg, #e1bee7 0%, #ce93d8 100%);
    text-align: center;
}

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

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    color: #555;
    font-size: 1.125rem;
}

/* About Page Styles */
.about-story {
    background: #fff;
}

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

.story-content p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.05rem;
}

.values {
    background: #f9f9f9;
}

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

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.value-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    color: #d4557b;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    color: #d4557b;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #666;
}

.team-intro {
    background: #fff;
}

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

.team-content p {
    margin-bottom: 1.5rem;
    color: #555;
}

.approach {
    background: #f5f5f5;
}

.approach-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-block {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.approach-block h3 {
    color: #d4557b;
    margin-bottom: 1rem;
}

.approach-block p {
    color: #666;
}

.milestones {
    background: #fff;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4557b;
    flex-shrink: 0;
    min-width: 80px;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.timeline-content p {
    color: #666;
}

.commitment {
    background: #f9f9f9;
}

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

.commitment-content p {
    margin-bottom: 1.5rem;
    color: #555;
}

.commitment-list {
    list-style: disc;
    padding-left: 2rem;
    margin: 2rem 0;
}

.commitment-list li {
    margin-bottom: 1rem;
    color: #555;
}

.why-different {
    background: #fff;
}

.different-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.different-item h3 {
    color: #d4557b;
    margin-bottom: 1rem;
}

.different-item p {
    color: #666;
}

/* Services Page Styles */
.services-main {
    background: #fff;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: #666;
}

.service-detailed {
    max-width: 900px;
    margin: 0 auto 2rem;
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-header h2 {
    margin: 0;
    font-size: 1.5rem;
    text-align: left;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4557b;
}

.service-description p {
    color: #666;
    line-height: 1.7;
}

.service-benefits {
    background: #f5f5f5;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-card {
    background: #fff;
    padding: 1.75rem;
    border-radius: 8px;
    text-align: center;
}

.benefit-card h3 {
    color: #d4557b;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.benefit-card p {
    color: #666;
}

.process-section {
    background: #fff;
}

.process-list {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4557b, #c2446b);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.step-content p {
    color: #666;
}

.comparison {
    background: #f9f9f9;
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.comparison-cell {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

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

.comparison-cell.header {
    background: #f9f9f9;
    font-weight: 700;
    color: #d4557b;
}

/* Contact Page Styles */
.contact-main {
    background: #fff;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block:last-child {
    margin-bottom: 0;
}

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

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

.info-item h3 {
    color: #d4557b;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.info-item p {
    color: #666;
}

.info-item a {
    color: #d4557b;
    text-decoration: underline;
}

.contact-description h2,
.contact-description h3 {
    text-align: left;
}

.contact-description h3 {
    margin-top: 2rem;
}

.contact-description p {
    margin-bottom: 1.5rem;
    color: #555;
}

.contact-list {
    list-style: disc;
    padding-left: 2rem;
    margin: 1.5rem 0;
}

.contact-list li {
    margin-bottom: 0.75rem;
    color: #555;
}

.visit-info {
    background: #f5f5f5;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.info-card h3 {
    color: #d4557b;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.info-card p {
    color: #666;
}

.business-hours-extended {
    background: #fff;
}

.hours-detail {
    max-width: 700px;
    margin: 0 auto;
}

.hours-detail p {
    margin-bottom: 1.5rem;
    color: #555;
}

.hours-table {
    margin: 2rem 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.hours-row.closed {
    background: #f9f9f9;
}

.hours-row .day {
    font-weight: 600;
    color: #333;
}

.hours-row .time {
    color: #666;
}

.hours-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-top: 1rem;
}

/* Thank You Page */
.thankyou-hero {
    background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
    padding: 4rem 0;
}

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

.thankyou-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: #4caf50;
}

.thankyou-icon svg {
    width: 100%;
    height: 100%;
}

.thankyou-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thankyou-content p {
    margin-bottom: 1rem;
    color: #555;
}

.next-steps {
    background: #fff;
}

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

.step-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4557b, #c2446b);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-card h3 {
    margin-bottom: 0.75rem;
}

.step-card p {
    color: #666;
}

.meanwhile {
    background: #f5f5f5;
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.link-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.link-card h3 {
    color: #d4557b;
    margin-bottom: 0.5rem;
}

.link-card p {
    color: #666;
}

/* Legal Pages */
.legal-content {
    background: #fff;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    text-align: left;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.375rem;
}

.legal-text p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.legal-text ul {
    list-style: disc;
    padding-left: 2rem;
    margin: 1.5rem 0;
}

.legal-text ul li {
    margin-bottom: 0.75rem;
    color: #555;
}

.legal-text a {
    color: #d4557b;
    text-decoration: underline;
}

.legal-text strong {
    color: #333;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.footer-section p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.footer-section ul li a:hover {
    color: #d4557b;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 1000;
}

.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;
    color: #555;
}

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

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #fff;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.modal-close {
    font-size: 2rem;
    color: #999;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #333;
}

.modal-body {
    padding: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option:last-child {
    margin-bottom: 0;
}

.cookie-option label {
    display: flex;
    gap: 1rem;
    cursor: pointer;
    align-items: flex-start;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-option span {
    color: #555;
    line-height: 1.6;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
    text-align: right;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

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

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

    .benefits-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

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

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

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

    .industry-card {
        flex: 0 0 calc(50% - 0.75rem);
    }

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

    .trust-item {
        flex: 0 0 calc(50% - 0.75rem);
    }

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

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

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

    .approach-block {
        flex: 0 0 calc(50% - 1rem);
    }

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

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

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

    .benefit-card {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .info-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-card {
        flex: 0 0 calc(50% - 0.75rem);
    }

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

    .step-card {
        flex: 1;
    }

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

    .link-card {
        flex: 1;
    }

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

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

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

    .cookie-content p {
        flex: 1;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

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

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

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

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        box-shadow: none;
        padding: 0;
        gap: 2rem;
        background: transparent;
    }

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

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

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

    section h2 {
        font-size: 2.25rem;
    }

    .services-grid {
        gap: 2rem;
    }

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

    .benefits-list {
        gap: 2rem;
    }

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

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

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

    .stats-grid {
        flex-direction: row;
        gap: 2rem;
    }

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

    .testimonials-grid {
        gap: 2rem;
    }

    .testimonial {
        flex: 0 0 calc(33.333% - 1.333rem);
    }

    .industries-grid {
        gap: 2rem;
    }

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

    .trust-grid {
        flex-direction: row;
        gap: 2rem;
    }

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

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

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

    .approach-blocks {
        gap: 2rem;
    }

    .approach-block {
        flex: 0 0 calc(50% - 1rem);
    }

    .different-grid {
        gap: 2rem;
    }

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

    .benefits-grid {
        flex-direction: row;
        gap: 2rem;
    }

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

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

    .contact-info {
        flex: 0 0 380px;
    }

    .contact-description {
        flex: 1;
    }

    .info-cards {
        flex-direction: row;
        gap: 2rem;
    }

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

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

    .footer-section {
        flex: 1;
    }
}