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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

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

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

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

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

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

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

.main-nav {
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: 0.3s;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: 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;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

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

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

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

.sticky-cta.show {
    display: block;
}

.sticky-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.sticky-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-visual {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 79, 0.85) 0%, rgba(139, 111, 71, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
}

.hook-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.hook-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 1.3;
    color: var(--text-dark);
}

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

.text-cta {
    display: inline-block;
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.problem-section {
    padding: 80px 20px;
}

.container-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-content {
    flex: 1;
}

.split-content h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.insight-section {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: white;
}

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

.insight-card h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.insight-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 15px;
    opacity: 0.95;
}

.story-section {
    padding: 100px 20px;
}

.story-section h2 {
    font-size: 2.3rem;
    margin-bottom: 35px;
    color: var(--text-dark);
}

.story-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1.8;
}

.trust-section {
    padding: 90px 20px;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 50px;
}

.trust-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    background-color: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.trust-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #234c3e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.testimonial-section {
    padding: 80px 20px;
}

.testimonial {
    background-color: var(--bg-light);
    padding: 40px;
    margin-bottom: 30px;
    border-left: 5px solid var(--secondary-color);
    border-radius: 4px;
}

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

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

.benefits-section {
    padding: 90px 20px;
    background-color: white;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 60px;
}

.benefits-visual {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-block {
    flex: 1;
    text-align: center;
}

.benefit-block img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.benefit-block h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.urgency-section {
    padding: 70px 20px;
    background-color: #fffbf5;
}

.urgency-box {
    background-color: white;
    border: 2px solid var(--accent-color);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.urgency-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.urgency-box p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.urgency-note {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.services-section {
    padding: 90px 20px;
    background-color: var(--bg-white);
}

.services-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: -30px auto 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 300px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
}

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

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

.service-card h3 {
    padding: 20px 25px 10px;
    font-size: 1.4rem;
    color: var(--text-dark);
}

.service-card p {
    padding: 0 25px 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.service-features {
    padding: 15px 25px;
    background-color: var(--bg-light);
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
    border-top: 1px solid var(--border-color);
}

.price {
    padding: 15px 25px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

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

.comparison-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

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

.comparison-table {
    display: flex;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-col {
    flex: 1;
    background-color: white;
    padding: 35px;
    border-radius: 8px;
}

.comparison-col.highlight {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.comparison-col h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-align: center;
}

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

.comparison-col ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.comparison-col.highlight ul li {
    border-bottom-color: rgba(255,255,255,0.2);
}

.comparison-col ul li:before {
    content: "✓ ";
    margin-right: 8px;
    font-weight: bold;
}

.form-section {
    padding: 90px 20px;
    background-color: white;
}

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

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

.main-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 79, 0.1);
}

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

.form-checkbox {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
}

.form-checkbox label {
    font-size: 0.95rem;
    color: var(--text-light);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background-color: #234c3e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

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

.final-cta-section h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.final-cta-section p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-primary-large {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 18px 50px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: 0.3s;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

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

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

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

.page-hero .lead {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-content {
    padding: 80px 20px;
}

.about-content h2 {
    font-size: 2rem;
    margin: 50px 0 25px;
    color: var(--text-dark);
}

.about-content h2:first-of-type {
    margin-top: 0;
}

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

.values-list {
    list-style: none;
    margin: 30px 0;
}

.values-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.05rem;
    color: var(--text-light);
}

.about-cta {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 38px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: 0.3s;
}

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

.services-detail {
    padding: 60px 20px;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.service-detail-image img {
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.service-detail-content ul {
    margin: 15px 0 25px 20px;
    color: var(--text-light);
}

.service-detail-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.guarantee-section {
    padding: 70px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.guarantee-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.guarantee-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 15px;
    line-height: 1.7;
}

.contact-content {
    padding: 60px 20px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

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

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

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

.contact-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

.map-placeholder {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 30px;
}

.map-placeholder p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.map-note {
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-cta {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.contact-cta h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-cta p {
    margin-bottom: 20px;
    color: var(--text-light);
}

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

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

.faq-item {
    background-color: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

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

.thanks-hero {
    padding: 80px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

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

.thanks-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
}

.thanks-content {
    padding: 70px 20px;
}

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

.next-steps {
    margin-bottom: 60px;
}

.step {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-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.4rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.thanks-info {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-info h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-info ul {
    list-style: none;
}

.thanks-info ul li {
    margin-bottom: 12px;
}

.thanks-cta {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

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

.legal-content {
    padding: 60px 20px;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-updated {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 30px;
    color: var(--text-light);
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

.gdpr-table th,
.cookies-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.gdpr-table td,
.cookies-table td {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 20px 0;
        gap: 0;
    }

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

    .nav-menu li {
        padding: 15px 0;
    }

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

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

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

    .benefits-visual {
        flex-direction: column;
    }

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

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .about-cta {
        flex-direction: column;
    }

    .gdpr-table,
    .cookies-table {
        font-size: 0.9rem;
    }

    .gdpr-table th,
    .gdpr-table td,
    .cookies-table th,
    .cookies-table td {
        padding: 10px;
    }
}