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

:root {
    --primary-color: #1a4d7d;
    --primary-dark: #0f3556;
    --secondary-color: #2d7ab8;
    --accent-color: #e8952f;
    --text-dark: #1e1e1e;
    --text-medium: #4a4a4a;
    --text-light: #6e6e6e;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --error-color: #e74c3c;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

.main-nav {
    background-color: var(--background-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

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

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

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-medium);
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    padding-right: 2rem;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: 800;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
}

.hero-visual {
    flex: 1;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

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

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.3;
}

.content-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.content-block h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.content-block p {
    margin-bottom: 1.2rem;
    color: var(--text-medium);
    font-size: 1.1rem;
}

.content-block img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.stat-group {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-medium);
    margin-top: 0.5rem;
}

.trust-indicators {
    background-color: var(--background-light);
}

.problem-section {
    background-color: var(--background-white);
    padding: 5rem 2rem;
}

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

.narrow-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
    font-weight: 700;
    text-align: center;
}

.narrow-content p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.problem-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--error-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.highlight-text {
    background-color: #fff3cd;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 2rem 0;
}

.services-section {
    background-color: var(--background-light);
    padding: 5rem 2rem;
}

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

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-medium);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 320px;
    background-color: var(--background-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.service-content p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

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

.service-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.btn-service,
.btn-service-page {
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    display: inline-block;
}

.btn-service:hover,
.btn-service-page:hover {
    background-color: var(--primary-dark);
    transform: scale(1.02);
}

.btn-service.selected {
    background-color: var(--success-color);
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-primary {
    background-color: var(--accent-color);
    color: var(--background-white);
}

.cta-primary:hover {
    background-color: #d17a1f;
    color: var(--background-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(232, 149, 47, 0.3);
}

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

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

.testimonial-section {
    padding: 5rem 2rem;
    background-color: var(--background-white);
}

.testimonial {
    margin: 2rem 0;
    font-size: 1.15rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-medium);
}

.testimonial p {
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-image {
    width: 100%;
    border-radius: 8px;
}

.form-section {
    background-color: var(--background-light);
    padding: 5rem 2rem;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--background-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.form-header p {
    color: var(--text-medium);
    font-size: 1.05rem;
}

.selected-service-display {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    color: var(--text-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

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

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

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.btn-submit {
    background-color: var(--accent-color);
    color: var(--background-white);
    padding: 1.2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #d17a1f;
    transform: translateY(-2px);
}

.why-section {
    padding: 5rem 2rem;
    background-color: var(--background-white);
}

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

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

.feature-item p {
    color: var(--text-medium);
}

.cta-final {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 5rem 2rem;
    text-align: center;
}

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

.cta-content h2 {
    color: var(--background-white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.main-footer {
    background-color: #1e1e1e;
    color: var(--background-white);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--background-white);
    font-weight: 600;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--background-white);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    background-color: var(--accent-color);
    color: var(--background-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #d17a1f;
    color: var(--background-white);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(232, 149, 47, 0.4);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    color: rgba(255,255,255,0.9);
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: var(--success-color);
    color: var(--background-white);
}

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

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

.btn-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

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

.page-hero-content h1 {
    color: var(--background-white);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

.expertise-list {
    list-style: none;
    margin-top: 1.5rem;
}

.expertise-list li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    color: var(--text-medium);
}

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

.stats-section {
    background-color: var(--background-light);
    padding: 4rem 2rem;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-box {
    text-align: center;
    flex: 1 1 200px;
}

.stat-box .stat-number {
    font-size: 3.5rem;
    color: var(--accent-color);
}

.stat-box .stat-label {
    font-size: 1.1rem;
    color: var(--text-medium);
}

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

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

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

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

.step-content p {
    color: var(--text-medium);
}

.cta-section {
    background-color: var(--background-light);
    padding: 5rem 2rem;
    text-align: center;
}

.contact-info-section {
    padding: 5rem 2rem;
    background-color: var(--background-white);
}

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

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

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

.location-section {
    background-color: var(--background-light);
    padding: 4rem 2rem;
}

.transport-info {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.transport-item {
    flex: 1 1 250px;
}

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

.transport-item p {
    color: var(--text-medium);
}

.faq-contact-section {
    padding: 5rem 2rem;
    background-color: var(--background-white);
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item h4 {
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

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

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

.thanks-container {
    max-width: 900px;
    background-color: var(--background-white);
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    text-align: center;
}

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

.thanks-container h1 {
    color: var(--primary-dark);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 3rem;
}

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

.next-steps h2 {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 2.5rem;
    font-size: 2rem;
}

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

.step-card {
    flex: 1 1 280px;
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
}

.step-card .step-number {
    margin-bottom: 1rem;
}

.step-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.step-card p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.thanks-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.legal-page {
    background-color: var(--background-white);
    padding: 3rem 2rem;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 700;
}

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

.legal-container h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.legal-container p {
    color: var(--text-medium);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.legal-container ul li {
    margin-bottom: 0.5rem;
}

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

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

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

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

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail {
    margin-bottom: 5rem;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--background-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price-display {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin: 1rem 0;
}

.price-period {
    font-size: 1.5rem;
    color: var(--text-medium);
}

.service-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

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

.detailed-features li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.7;
}

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

.highlight-service {
    background-color: var(--background-light);
    padding: 3rem 2rem;
    border-radius: 8px;
}

.comparison-section {
    background-color: var(--background-white);
    padding: 5rem 2rem;
}

.comparison-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.comparison-card {
    flex: 1 1 calc(33.333% - 1.33rem);
    min-width: 280px;
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
}

.comparison-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.guarantee-section {
    background-color: var(--background-light);
    padding: 5rem 2rem;
    text-align: center;
}

.guarantee-section .narrow-content {
    background-color: var(--background-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.services-intro {
    padding: 4rem 2rem;
    background-color: var(--background-white);
}

.price-note {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
}

.about-intro,
.team-section,
.approach-section {
    padding: 5rem 2rem;
}

.values-section {
    background-color: var(--background-light);
    padding: 5rem 2rem;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-text {
        padding-right: 0;
    }

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 3rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .value-card {
        flex: 1 1 100%;
    }

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

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

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

    .nav-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--background-white);
        padding: 1.5rem 2rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        gap: 1rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .content-block h2 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        justify-content: space-between;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

    .stats-container {
        flex-direction: column;
        gap: 2.5rem;
    }

    .transport-info {
        flex-direction: column;
    }

    .thanks-container {
        padding: 2.5rem 1.5rem;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .comparison-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .service-price,
    .price-display {
        font-size: 2rem;
    }

    .form-container {
        padding: 2rem;
    }

    .legal-container h1 {
        font-size: 2.2rem;
    }
}