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

:root {
    --primary-color: #0a5c8f;
    --secondary-color: #f4a261;
    --accent-color: #e76f51;
    --text-dark: #2b2d42;
    --text-light: #edf2f4;
    --background-light: #ffffff;
    --background-gray: #f8f9fa;
    --border-color: #dee2e6;
    --success-color: #2a9d8f;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

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

a {
    text-decoration: none;
    color: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(43, 45, 66, 0.95);
    color: var(--text-light);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

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

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

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

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

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

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

.main-nav {
    background-color: var(--background-light);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.ad-disclosure {
    font-size: 0.85rem;
    color: #6c757d;
    font-style: italic;
    padding: 0.3rem 0.8rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #0a5c8f 0%, #1a7bb9 100%);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

.intro-split {
    display: flex;
    align-items: center;
}

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

.intro-content,
.intro-image {
    flex: 1;
}

.intro-content {
    padding: 4rem 3rem;
}

.intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.problem-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.solution-split {
    display: flex;
    align-items: center;
    background-color: white;
}

.solution-content {
    flex: 1;
    padding: 4rem 3rem;
}

.solution-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.solution-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

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

.solution-image {
    flex: 1;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.testimonials-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    color: white;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.testimonial-card p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    font-style: normal;
}

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

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

.services-intro h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.15rem;
    color: #6c757d;
}

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

.service-item {
    flex: 1;
    min-width: 280px;
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

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

.service-item.featured {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(231, 111, 81, 0.2);
}

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

.service-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-item p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #6c757d;
}

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

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

.select-service:hover {
    background-color: #084770;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 92, 143, 0.3);
}

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

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.form-info p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.badge-item {
    font-size: 1.05rem;
    color: var(--success-color);
    font-weight: 600;
}

.form-container {
    flex: 1;
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a7bb9 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 92, 143, 0.3);
}

.final-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a5c8f 0%, #1a7bb9 100%);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

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

.cta-primary:hover {
    background-color: #d35f44;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 111, 81, 0.4);
}

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

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

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fff3cd;
}

.disclaimer-box {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #856404;
}

.disclaimer-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #856404;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column a {
    color: var(--text-light);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(237, 242, 244, 0.1);
    text-align: center;
    opacity: 0.7;
}

.page-hero {
    background: linear-gradient(135deg, #0a5c8f 0%, #1a7bb9 100%);
    color: white;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

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

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

.about-split {
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
}

.about-content {
    flex: 1;
    padding-right: 3rem;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.values-split {
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
}

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

.values-image {
    flex: 1;
}

.values-image img {
    border-radius: 10px;
}

.values-content {
    flex: 1;
    padding: 0 3rem;
}

.values-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    color: var(--accent-color);
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.team-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

.cta-about {
    padding: 5rem 2rem;
    background-color: white;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.service-detail-card {
    margin-bottom: 4rem;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.service-detail-card.featured-service {
    border: 3px solid var(--accent-color);
}

.badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    z-index: 10;
}

.service-detail-split {
    display: flex;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

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

.comparison-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.comparison-table {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

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

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

.comparison-cell {
    flex: 1;
    padding: 1.2rem;
    text-align: center;
    font-size: 1.05rem;
}

.comparison-row:not(.header):hover {
    background-color: var(--background-gray);
}

.guarantee-section {
    padding: 5rem 2rem;
    background-color: white;
}

.guarantee-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

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

.guarantee-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 2rem;
    background-color: var(--background-gray);
    border-radius: 10px;
}

.guarantee-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--success-color);
}

.guarantee-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-split {
    display: flex;
    padding: 4rem 2rem;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-item {
    margin-bottom: 2.5rem;
}

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

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-item .note {
    font-size: 0.95rem;
    color: #6c757d;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.faq-section {
    padding: 5rem 2rem;
    background-color: var(--background-gray);
    max-width: 1000px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.faq-item {
    background-color: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #6c757d;
}

.cta-contact {
    padding: 5rem 2rem;
    background-color: white;
    text-align: center;
}

.cta-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cta-contact p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.thanks-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2a9d8f 0%, #238276 100%);
    color: white;
}

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

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.confirmation-box {
    background-color: white;
    color: var(--text-dark);
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: left;
}

.confirmation-box h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

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

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

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

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #6c757d;
}

.service-info {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.2rem;
    display: none;
}

.service-info span {
    font-weight: 700;
}

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

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.link-card {
    flex: 1;
    min-width: 250px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.link-card:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.link-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.link-card p {
    font-size: 1.05rem;
    opacity: 0.9;
}

.support-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid var(--secondary-color);
}

.support-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.support-box p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-thanks {
    padding: 5rem 2rem;
    background-color: white;
}

.testimonial-thanks h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
}

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

.legal-content {
    padding: 3rem 2rem;
    background-color: white;
}

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

.legal-container h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-container ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.cookie-table thead {
    background-color: var(--primary-color);
    color: white;
}

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

.cookie-table tbody tr:hover {
    background-color: var(--background-gray);
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-split,
    .intro-split,
    .solution-split,
    .about-split,
    .values-split,
    .service-detail-split,
    .form-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-content h1,
    .page-hero h1,
    .thanks-content h1 {
        font-size: 2rem;
    }

    .section-header h2,
    .services-intro h2 {
        font-size: 1.8rem;
    }

    .problem-grid,
    .services-grid,
    .testimonial-split,
    .guarantee-grid,
    .links-grid {
        flex-direction: column;
    }

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

    .comparison-cell {
        border-bottom: 1px solid var(--border-color);
    }

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

    .service-detail-image img,
    .intro-image img,
    .solution-image img {
        min-height: 300px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}