/* 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.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

ul {
    list-style: none;
}

/* Container and Layout */
.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;
}

/* Split Screen Layout (Main Archetype) */
.split-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    padding: 60px 20px;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image {
    flex: 1;
}

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

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

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

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

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

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

.nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
    transition: left 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-menu.active {
    left: 0;
}

.nav-menu li a {
    font-size: 1.2rem;
    color: #2c3e50;
    padding: 12px 0;
    display: block;
    border-bottom: 1px solid #ecf0f1;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #2c5aa0;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background: #1e3d6f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-secondary {
    background: #7f8c8d;
}

.btn-secondary:hover {
    background: #5d6d6e;
}

.btn-service {
    width: 100%;
    margin-top: 15px;
}

.btn-submit {
    width: 100%;
}

/* Hero Section */
.hero-split {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 60px 20px;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}

.hero-text h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Value Proposition */
.value-proposition {
    background: #ffffff;
}

.value-proposition h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.value-proposition p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: #555;
}

/* Trust Indicators */
.trust-indicators {
    background: #2c5aa0;
    color: #ffffff;
    padding: 60px 20px;
}

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

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

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Services Showcase */
.services-showcase {
    padding: 80px 20px;
    background: #f8f9fa;
}

.section-header {
    margin-bottom: 50px;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

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

.service-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin: 20px 20px 15px;
}

.service-card p {
    font-size: 1rem;
    color: #666;
    margin: 0 20px 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin: 0 20px 20px;
}

.service-card .btn {
    margin: 0 20px 20px;
}

/* Process Section */
.process-section {
    background: #ffffff;
}

.process-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #2c5aa0;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.step-content h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 1rem;
    color: #666;
}

/* Testimonials */
.testimonials-section {
    background: #f8f9fa;
    padding: 80px 20px;
}

.testimonials-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #2c5aa0;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: #2c3e50;
    font-size: 1rem;
}

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

/* CTA Sections */
.cta-section-inline {
    padding: 60px 20px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
}

.cta-box {
    text-align: center;
    color: #ffffff;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-box .btn {
    background: #ffffff;
    color: #2c5aa0;
}

.cta-box .btn:hover {
    background: #f0f0f0;
}

.final-cta {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Form Section */
.form-section {
    background: #ffffff;
}

.form-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.checkbox-group label {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-group a {
    color: #2c5aa0;
    text-decoration: underline;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.footer-col p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.7;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    color: #ccc;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.cookie-banner.show {
    display: block;
    animation: slideUpCookie 0.5s ease;
}

@keyframes slideUpCookie {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

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

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.page-hero-small {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
    color: #ffffff;
    padding: 50px 20px;
    text-align: center;
}

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

.page-hero-small p {
    font-size: 1rem;
    opacity: 0.9;
}

/* About Page */
.about-intro {
    background: #ffffff;
}

.values-section {
    background: #f8f9fa;
    padding: 80px 20px;
}

.values-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.value-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.4rem;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.team-section {
    background: #ffffff;
    padding: 80px 20px;
}

.team-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.team-member {
    text-align: center;
}

.member-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 4px solid #2c5aa0;
}

.team-member h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 8px;
}

.member-role {
    font-size: 1rem;
    color: #2c5aa0;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.certifications-section {
    background: #f8f9fa;
}

.certifications-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cert-list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.cert-list li {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.certifications-section p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.history-section {
    background: #ffffff;
    padding: 80px 20px;
}

.history-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #2c5aa0;
}

.timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #2c5aa0;
    border: 3px solid #ffffff;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Services Page */
.services-detailed {
    background: #ffffff;
}

.service-detail {
    padding: 60px 0;
    border-bottom: 1px solid #e1e8ed;
}

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

.service-detail h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-includes {
    margin: 30px 0;
}

.service-includes h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

.service-includes ul li {
    font-size: 1rem;
    color: #666;
    padding: 10px 0 10px 30px;
    position: relative;
}

.service-includes ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-pricing-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 10px;
}

.price-note {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

.comparison-section {
    background: #f8f9fa;
    padding: 80px 20px;
}

.comparison-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.comparison-col {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.comparison-col h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    font-size: 1rem;
    padding: 12px 0 12px 35px;
    position: relative;
    line-height: 1.6;
}

.comparison-list.negative li {
    color: #e74c3c;
}

.comparison-list.negative li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.3rem;
}

.comparison-list.positive li {
    color: #27ae60;
}

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

/* Contact Page */
.contact-section {
    background: #ffffff;
    padding: 60px 20px;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info,
.contact-faq {
    flex: 1;
}

.contact-info h2,
.contact-faq h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    color: #2c5aa0;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.contact-item a {
    color: #2c5aa0;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    color: #999;
    margin-top: 5px;
}

.contact-map {
    margin-top: 40px;
}

.contact-map img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.map-note {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

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

.faq-item h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-section {
    background: #f8f9fa;
    padding: 80px 20px;
    min-height: 70vh;
}

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

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

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-main {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 30px;
}

.thanks-info {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service {
    font-size: 1.1rem;
    color: #2c3e50;
}

.thanks-details {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: #2c5aa0;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.step-text h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 8px;
}

.step-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.thanks-contact {
    background: #fff8e1;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.thanks-contact p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.thanks-contact a {
    color: #2c5aa0;
    text-decoration: underline;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.thanks-social p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

.thanks-social ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thanks-social ul li a {
    color: #2c5aa0;
    text-decoration: underline;
    font-size: 0.95rem;
}

/* Legal Content */
.legal-content {
    background: #ffffff;
    padding: 60px 20px;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 40px 0 20px;
}

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

.legal-content h3 {
    font-size: 1.3rem;
    color: #2c5aa0;
    margin: 30px 0 15px;
}

.legal-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-content a {
    color: #2c5aa0;
    text-decoration: underline;
}

.legal-note {
    background: #fff8e1;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    margin: 30px 0;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    .split-container {
        flex-direction: row;
        gap: 60px;
    }

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

    .hero-content {
        flex-direction: row;
        gap: 60px;
    }

    .nav-toggle {
        display: none;
    }

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

    .nav-menu li a {
        border-bottom: none;
        font-size: 1rem;
        padding: 0 20px;
    }

    .trust-grid {
        flex-direction: row;
        justify-content: space-around;
    }

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

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

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

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

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

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

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 50px;
    }

    .team-member {
        flex: 0 0 calc(33.333% - 34px);
    }

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

    .comparison-col {
        flex: 1;
    }

    .contact-layout {
        flex-direction: row;
        gap: 80px;
    }

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

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

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

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

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

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

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

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