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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bf0d;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --white: #ffffff;
    --gray: #666;
    --border-color: #ddd;
}

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

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

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

ul {
    list-style: none;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

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

.split-hero {
    display: flex;
    min-height: 85vh;
}

.split-left,
.split-right {
    flex: 1;
}

.split-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background-color: var(--light-color);
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray);
}

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

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.split-section {
    display: flex;
    min-height: 600px;
}

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

.split-content,
.split-visual {
    flex: 1;
}

.split-content {
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--gray);
    line-height: 1.8;
}

.split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    display: inline-block;
    transition: 0.3s;
}

.cta-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.services-intro {
    padding: 4rem 5%;
    text-align: center;
    background-color: var(--light-color);
}

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

.intro-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.split-service {
    display: flex;
    min-height: 550px;
}

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

.service-image,
.service-details {
    flex: 1;
}

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

.service-details {
    padding: 3rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white);
}

.service-details h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.service-details p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.7;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.btn-select {
    padding: 0.9rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.testimonials-split {
    display: flex;
    min-height: 500px;
    background-color: var(--light-color);
}

.testimonial-content {
    flex: 1;
    padding: 3rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.testimonial-image {
    flex: 1;
}

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

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

.process-section {
    padding: 4rem 5%;
    background-color: var(--white);
}

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

.process-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    text-align: center;
    background-color: var(--light-color);
    border-radius: 8px;
    transition: 0.3s;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

.step p {
    color: var(--gray);
}

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

.split-cta {
    display: flex;
    min-height: 500px;
}

.cta-visual {
    flex: 1;
}

.cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    flex: 1;
    padding: 3rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.cta-primary-large {
    padding: 1.2rem 3rem;
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 5px;
    display: inline-block;
    align-self: flex-start;
    transition: 0.3s;
}

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

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--gray);
    font-size: 1.1rem;
}

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

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

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

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

.form-privacy {
    margin: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.form-privacy input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-privacy label {
    font-size: 0.95rem;
    color: var(--gray);
}

.form-privacy a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

.main-footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 3rem 5% 1rem;
}

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

.footer-col {
    flex: 1;
    min-width: 250px;
}

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

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

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

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

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

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

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

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.sticky-cta a:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 1.5rem 5%;
    z-index: 10000;
    display: none;
    box-shadow: 0 -3px 15px rgba(0,0,0,0.3);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

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

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

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

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

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

.page-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.hero-overlay p {
    font-size: 1.3rem;
}

.values-section {
    padding: 4rem 5%;
    background-color: var(--white);
}

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: var(--light-color);
    border-radius: 8px;
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

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

.numbers-section {
    padding: 4rem 5%;
    background-color: var(--primary-color);
    color: var(--white);
}

.numbers-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.numbers-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.number-box {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
}

.big-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.number-box p {
    font-size: 1.1rem;
}

.cta-simple {
    padding: 4rem 5%;
    text-align: center;
    background-color: var(--light-color);
}

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

.cta-simple p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray);
}

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

.service-full {
    display: flex;
    min-height: 600px;
    border-bottom: 1px solid var(--border-color);
}

.service-full.reverse {
    flex-direction: row-reverse;
}

.service-full-content,
.service-full-image {
    flex: 1;
}

.service-full-content {
    padding: 3rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-full-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-full-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.8;
}

.service-features {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-features li {
    list-style: disc;
    margin-bottom: 0.7rem;
    color: var(--gray);
}

.service-pricing {
    margin: 2rem 0;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.price-label {
    font-size: 1rem;
    color: var(--gray);
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

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

.why-choose {
    padding: 4rem 5%;
    background-color: var(--light-color);
}

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

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

.why-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
}

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

.why-item p {
    color: var(--gray);
}

.contact-split {
    display: flex;
    min-height: 600px;
}

.contact-info {
    flex: 1;
    padding: 3rem 5%;
    background-color: var(--light-color);
}

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

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--gray);
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.info-block p {
    color: var(--gray);
    line-height: 1.7;
}

.info-block a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-section {
    padding: 4rem 5%;
    background-color: var(--white);
}

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

.map-placeholder {
    background-color: var(--light-color);
    padding: 4rem;
    text-align: center;
    border-radius: 8px;
    font-size: 1.3rem;
    color: var(--gray);
}

.contact-reasons {
    padding: 4rem 5%;
    background-color: var(--light-color);
}

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

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

.reason-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

.reason-card p {
    color: var(--gray);
    line-height: 1.7;
}

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

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

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

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: 8px;
}

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

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

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

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

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

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--gray);
}

.thanks-details {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: 8px;
}

.thanks-details p {
    margin-bottom: 0.8rem;
    color: var(--gray);
}

.thanks-next {
    margin: 2.5rem 0;
    text-align: left;
}

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

.thanks-next ol {
    padding-left: 1.5rem;
}

.thanks-next li {
    list-style: decimal;
    margin-bottom: 0.7rem;
    color: var(--gray);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

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

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

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

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

.next-steps {
    padding: 4rem 5%;
    background-color: var(--white);
}

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

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

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

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

.step-card p {
    color: var(--gray);
    line-height: 1.7;
}

.legal-page {
    padding: 4rem 5%;
    background-color: var(--white);
}

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

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

.updated {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 2.5rem;
}

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

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

.legal-container p {
    margin-bottom: 1rem;
    color: var(--gray);
    line-height: 1.8;
}

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

.legal-container li {
    list-style: disc;
    margin-bottom: 0.6rem;
    color: var(--gray);
    line-height: 1.7;
}

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

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

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

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

.gdpr-table td,
.cookie-table td {
    color: var(--gray);
}

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

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: var(--white);
        padding: 2rem;
        gap: 1rem;
        transition: 0.3s;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

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

    .split-hero,
    .split-section,
    .split-service,
    .testimonials-split,
    .split-cta,
    .contact-split,
    .service-full {
        flex-direction: column;
    }

    .split-section.reverse,
    .split-service.reverse,
    .service-full.reverse {
        flex-direction: column;
    }

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

    .split-content h2,
    .service-full-content h2 {
        font-size: 1.8rem;
    }

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

    .values-grid,
    .why-grid,
    .reasons-grid,
    .steps-grid {
        flex-direction: column;
    }

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

    .thanks-container {
        padding: 2rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}
