:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a9bc7;
    --accent-color: #e8f4f8;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-section: #f4f7f9;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

* {
    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: var(--text-dark);
    background-color: var(--bg-white);
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.4rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img, svg {
    max-width: 100%;
    height: auto;
}

ul {
    list-style-position: inside;
}

.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    position: relative;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    list-style: none;
}

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

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

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

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

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

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    padding: 4rem 0;
    text-align: center;
}

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

.hero h1 {
    color: var(--bg-white);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.hero p {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.page-hero {
    background-color: var(--bg-section);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 0.5rem;
}

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

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

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

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

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

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

.btn-text {
    background: transparent;
    color: var(--text-medium);
    padding: 0.5rem 1rem;
}

.btn-text:hover {
    color: var(--primary-color);
}

section {
    padding: 4rem 0;
}

.section-intro {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    color: var(--text-medium);
}

.philosophy {
    background-color: var(--bg-section);
}

.philosophy h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

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

.services-preview {
    background-color: var(--bg-white);
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    flex: 1 1 100%;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-medium);
}

.cta-center {
    text-align: center;
}

.insights {
    background-color: var(--bg-section);
}

.insights h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.insights-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.insight-item {
    padding: 2rem;
    background-color: var(--bg-white);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.insight-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

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

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--bg-white);
    opacity: 0.9;
}

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

.process h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    background-color: var(--bg-section);
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.testimonials {
    background-color: var(--bg-section);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial {
    flex: 1 1 100%;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.testimonial p {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial cite {
    display: block;
    font-style: normal;
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.knowledge h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.knowledge-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.knowledge-card {
    flex: 1 1 100%;
    padding: 1.5rem;
    background-color: var(--bg-section);
    border-radius: 8px;
    border-top: 3px solid var(--secondary-color);
}

.knowledge-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.faq {
    background-color: var(--bg-section);
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    margin-bottom: 1rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background-color: var(--bg-white);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--accent-color);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.faq-item.active .faq-question::after {
    content: '−';
}

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.cta-final {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
    text-align: center;
}

.cta-final h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-final p {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 0 1.5rem;
}

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

.footer-section {
    flex: 1 1 100%;
}

.footer-section h3,
.footer-section h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    color: var(--bg-white);
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

.cookie-modal h2 {
    margin-bottom: 1.5rem;
}

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

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

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

.cookie-option p {
    margin: 0.5rem 0 0 1.75rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.cookie-modal-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.story,
.values,
.team,
.achievements,
.benefits,
.trust-indicators,
.service-benefits,
.process-overview,
.comparison,
.contact-info,
.company-info-section,
.contact-faq,
.directions {
    background-color: var(--bg-white);
}

.story:nth-of-type(odd),
.values:nth-of-type(odd),
.achievements:nth-of-type(odd),
.service-benefits:nth-of-type(odd),
.comparison:nth-of-type(odd),
.company-info-section:nth-of-type(odd),
.directions:nth-of-type(odd) {
    background-color: var(--bg-section);
}

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

.story-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-item {
    flex: 1 1 100%;
    text-align: center;
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.industries h3 {
    text-align: center;
    margin: 3rem 0 2rem;
}

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.industry-item {
    flex: 1 1 100%;
    padding: 1.5rem;
    background-color: var(--bg-section);
    border-radius: 8px;
}

.industry-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    padding: 1.5rem;
    margin-bottom: 2rem;
    background-color: var(--bg-section);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.timeline-year {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.timeline-item h3 {
    margin-bottom: 0.5rem;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-block {
    flex: 1 1 100%;
    padding: 1.5rem;
    background-color: var(--bg-section);
    border-radius: 8px;
}

.benefit-block h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    flex: 1 1 100%;
    padding: 1.5rem;
    text-align: center;
    background-color: var(--bg-section);
    border-radius: 8px;
}

.trust-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.services-main h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-pricing {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.pricing-card {
    flex: 1 1 100%;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-color);
}

.pricing-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-card > p {
    margin-bottom: 1.5rem;
    min-height: 60px;
}

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

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

.features li {
    padding: 0.75rem 0;
    border-top: 1px solid var(--border-color);
}

.features li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: 700;
    margin-right: 0.75rem;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-item {
    flex: 1 1 100%;
    text-align: center;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
}

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

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-section);
    border-radius: 8px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.comparison-table {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-row {
    display: flex;
    flex-wrap: wrap;
}

.comparison-header {
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
}

.comparison-cell {
    flex: 1 1 33.333%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    text-align: center;
}

.comparison-header .comparison-cell {
    border-color: var(--primary-color);
}

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

.contact-block {
    flex: 1 1 100%;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0;
}

.contact-item a {
    color: var(--primary-color);
}

.info-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-block {
    flex: 1 1 100%;
    padding: 1.5rem;
    background-color: var(--bg-section);
    border-radius: 8px;
}

.info-block h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.directions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.direction-item {
    flex: 1 1 100%;
    padding: 1.5rem;
    background-color: var(--bg-section);
    border-radius: 8px;
}

.direction-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.thank-you-section {
    padding: 4rem 0;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.thank-you-content h1 {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

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

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

.step-card {
    flex: 1 1 100%;
    padding: 2rem;
    background-color: var(--bg-section);
    border-radius: 8px;
    text-align: center;
}

.step-card .step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.while-you-wait {
    margin: 3rem 0;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.resource-link {
    display: block;
    padding: 1.5rem;
    background-color: var(--bg-section);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.resource-link:hover {
    transform: translateX(4px);
}

.resource-link h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.resource-link p {
    margin: 0;
}

.urgent-notice {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--accent-color);
    border-radius: 8px;
    border: 2px solid var(--primary-color);
}

.urgent-notice h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.urgent-notice p {
    margin: 0;
}

.legal-content {
    padding: 3rem 0;
}

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

.legal-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-text ul {
    margin: 1rem 0 1.5rem 1.5rem;
    list-style-position: outside;
}

.legal-text li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-text p {
    line-height: 1.8;
}

@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .nav-menu li {
        margin-left: 2rem;
    }

    .nav-menu a {
        padding: 0.5rem 0;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background-color: transparent;
        color: var(--secondary-color);
    }

    .menu-toggle {
        display: none;
    }

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

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

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

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

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

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

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

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

    .trust-item {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

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

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

    .comparison-cell {
        flex: 1 1 33.333%;
    }

    .contact-block {
        flex: 1 1 calc(50% - 1.5rem);
    }

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

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

    .step-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}

@media (min-width: 1024px) {
    section {
        padding: 5rem 0;
    }

    .service-card {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .testimonial {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .value-item {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .pricing-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .benefit-item {
        flex: 1 1 calc(25% - 1.5rem);
    }
}