* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0066cc;
    --primary-dark: #004a99;
    --secondary: #00cc99;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    color: var(--primary-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.main-nav {
    background: var(--bg-white);
    box-shadow: 0 2px 10px var(--shadow);
    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;
    min-height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: none;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
}

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

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--secondary);
}

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

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

.btn-accept {
    background: var(--secondary);
    color: var(--text-dark);
}

.btn-reject {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject:hover {
    background: var(--bg-white);
    color: var(--text-dark);
}

.hero-split {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.hero-left h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-left .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary);
    color: var(--bg-white);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hero-right img {
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow);
}

.trust-indicators {
    padding: 40px 0;
    background: var(--bg-white);
}

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

.trust-item {
    padding: 20px;
}

.trust-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.trust-item p {
    color: var(--text-light);
}

.problem-split {
    padding: 80px 0;
    background: var(--bg-white);
}

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

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

.split-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.split-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.cta-inline {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
}

.split-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow);
}

.process-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

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

.process-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
}

.process-num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.process-card p {
    color: var(--text-light);
}

.services-pricing {
    padding: 80px 0;
    background: var(--bg-white);
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.pricing-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.pricing-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-card {
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 35px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: var(--bg-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
}

.features {
    list-style: none;
    margin-bottom: 30px;
}

.features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.select-service {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: var(--bg-white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: var(--primary-dark);
}

.booking-form-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.form-wrapper {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
}

.form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.selected-service-display {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 30px;
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-submit {
    padding: 15px;
    background: var(--primary);
    color: var(--bg-white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

.testimonials-split {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonial-block {
    margin-bottom: 30px;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.7;
}

.author {
    color: var(--text-light);
    font-weight: 600;
}

.technology-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.tech-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tech-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.tech-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.tech-list {
    list-style: none;
    margin-bottom: 30px;
}

.tech-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

.tech-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.cta-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: var(--primary);
    color: var(--bg-white);
}

.tech-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow);
}

.use-cases {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.case-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s;
}

.case-card:hover {
    transform: translateY(-5px);
}

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

.case-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.4rem;
}

.case-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-box {
    text-align: center;
    color: var(--bg-white);
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

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

.cta-large {
    display: inline-block;
    padding: 18px 50px;
    background: var(--bg-white);
    color: var(--primary);
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-large:hover {
    transform: scale(1.05);
}

.main-footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-col p {
    color: #ccc;
    line-height: 1.8;
}

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

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

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

.footer-col ul li a:hover {
    color: var(--secondary);
}

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

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

.sticky-btn {
    display: block;
    padding: 15px 30px;
    background: var(--primary);
    color: var(--bg-white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.page-header {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.page-header .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 80px 0;
}

.service-detail-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.service-detail-split.reverse {
    flex-direction: column-reverse;
}

.detail-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.detail-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.2rem;
}

.price-info {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 20px;
}

.detail-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow);
}

.tech-specs {
    padding: 80px 0;
    background: var(--bg-light);
}

.tech-specs h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.specs-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.spec-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
}

.spec-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.spec-card ul {
    list-style: none;
}

.spec-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.spec-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.5rem;
}

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

.values-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.value-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.team-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.team-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.team-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

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

.team-member {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.7;
}

.numbers-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.numbers-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.numbers-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.number-item {
    padding: 30px;
}

.big-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.number-item p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.approach-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a {
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 10px;
}

.contact-map {
    position: relative;
}

.contact-map img {
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow);
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.map-info {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 5px 20px var(--shadow);
}

.map-info p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.faq-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px var(--shadow);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

.thanks-box h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thanks-box .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-info {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    margin: 40px 0;
    display: none;
}

.thanks-info h3 {
    margin-bottom: 10px;
}

.service-name {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
}

.next-steps {
    text-align: left;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.next-steps ol {
    padding-left: 20px;
}

.next-steps li {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.btn-primary,
.btn-secondary {
    display: block;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-white);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--bg-white);
}

.emergency-contact {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 20px;
    border-radius: 10px;
    margin-top: 40px;
}

.emergency-contact p {
    margin-bottom: 5px;
}

.related-content {
    padding: 80px 0;
    background: var(--bg-light);
}

.related-content h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

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

.related-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
}

.related-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.related-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.related-card a {
    color: var(--primary);
    font-weight: 600;
}

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary);
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page h4 {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-page p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page li {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

.cookie-table {
    overflow-x: auto;
    margin: 30px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    box-shadow: 0 5px 20px var(--shadow);
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.cookie-table th {
    background: var(--primary);
    color: var(--bg-white);
    font-weight: 600;
}

.cookie-table td {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .mobile-toggle {
        display: none;
    }

    .hero-content,
    .split-container {
        flex-direction: row;
        align-items: center;
    }

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

    .hero-left,
    .hero-right,
    .split-text,
    .split-image,
    .detail-content,
    .detail-image,
    .tech-content,
    .tech-image {
        flex: 1;
    }

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

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

    .process-card {
        flex: 1 1 calc(50% - 15px);
    }

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

    .pricing-card {
        flex: 1 1 calc(50% - 15px);
    }

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

    .case-card,
    .value-card,
    .related-card {
        flex: 1 1 calc(50% - 15px);
    }

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

    .team-member {
        flex: 1 1 calc(50% - 15px);
    }

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

    .spec-card {
        flex: 1 1 calc(50% - 15px);
    }

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

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

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

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

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

    .footer-col {
        flex: 1;
    }

    .sticky-cta {
        display: block;
    }
}

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

    .process-card {
        flex: 1 1 calc(25% - 22.5px);
    }

    .pricing-card {
        flex: 1 1 calc(33.333% - 20px);
    }

    .case-card {
        flex: 1 1 calc(25% - 22.5px);
    }
}
