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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f4f4f4;
    --accent-color: #8b7355;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --overlay: rgba(0, 0, 0, 0.6);
}

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

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

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

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

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

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

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

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

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem 5%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.nav-menu a {
    padding: 1rem 0;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.hero-fullscreen {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(var(--overlay), var(--overlay)), url('https://images.unsplash.com/photo-1469334031218-e382a71b716b?w=1600') center/cover;
    position: relative;
    text-align: center;
    padding: 0 5%;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
}

.btn-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 2px;
    transition: all 0.3s;
}

.btn-hero:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
}

.container-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 5%;
}

.container-flow {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.container-wide {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-intro {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.intro-text {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 300;
}

.problem-reveal {
    padding: 6rem 0;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.text-block p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.image-block {
    flex: 1;
}

.image-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

.insight-section {
    padding: 7rem 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.section-title-center {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.insight-text {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
}

.cta-inline {
    margin-top: 3rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s;
    font-size: 1.05rem;
}

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

.trust-builder {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.trust-card {
    background: var(--white);
    padding: 2.5rem;
    border-left: 3px solid var(--accent-color);
}

.trust-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.trust-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.testimonial-flow {
    padding: 5rem 0;
}

.testimonial {
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
    font-style: italic;
}

.testimonial p {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.story-continuation {
    padding: 6rem 0;
}

.container-flow.reverse {
    flex-direction: column-reverse;
}

.benefits-reveal {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-item h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

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

.services-pricing {
    padding: 7rem 0;
}

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.15rem;
    color: var(--text-light);
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-card.featured {
    border: 2px solid var(--accent-color);
    background: linear-gradient(to bottom, #fdfbf7, var(--white));
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 2px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
}

.service-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-features li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.05rem;
}

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

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

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

.urgency-section {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.urgency-box {
    background: var(--white);
    padding: 2.5rem;
    border-left: 4px solid var(--accent-color);
    text-align: center;
}

.urgency-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.urgency-box p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.urgency-note {
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 1.5rem;
}

.form-section {
    padding: 7rem 0;
}

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

.order-form {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 2px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
}

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

.form-consent {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.3rem;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--accent-color);
}

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

.btn-submit:hover {
    background: var(--accent-color);
}

.final-push {
    padding: 6rem 0;
    background: var(--secondary-color);
    text-align: center;
}

.final-push h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.final-push p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 1rem 5%;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.3s;
}

.sticky-cta.visible {
    transform: translateY(0);
}

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

.sticky-text {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-sticky {
    padding: 0.9rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s;
}

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

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.7rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

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

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

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

.cookie-content p {
    line-height: 1.6;
    font-size: 1rem;
}

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

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

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

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

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

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

.page-hero {
    padding: 8rem 0 4rem;
    background: var(--secondary-color);
    text-align: center;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 300;
    margin-top: 1rem;
}

.about-story {
    padding: 6rem 0;
}

.story-image {
    width: 100%;
    height: auto;
    margin-bottom: 3rem;
    border-radius: 2px;
}

.about-story h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.about-story p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.philosophy-section {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.values-section {
    padding: 6rem 0;
}

.value-block {
    margin-bottom: 3rem;
}

.value-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.value-block p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.team-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    color: var(--text-light);
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.team-member {
    background: var(--white);
    padding: 2rem;
    text-align: center;
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.manifesto-section {
    padding: 6rem 0;
}

.manifesto-text {
    margin-top: 2rem;
}

.manifesto-text p {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 1rem;
    font-weight: 300;
}

.cta-section {
    padding: 5rem 0;
    background: var(--accent-color);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

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

.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    border-radius: 2px;
    transition: all 0.3s;
    font-size: 1.1rem;
}

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

.services-intro {
    padding: 5rem 0 3rem;
}

.intro-large {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.services-grid {
    padding: 4rem 0;
}

.service-detailed {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 5rem;
}

.service-detailed.reverse {
    flex-direction: column-reverse;
}

.service-image {
    flex: 1;
    position: relative;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.badge-popular {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    font-weight: 700;
    border-radius: 2px;
}

.service-content {
    flex: 1;
}

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

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

.detailed-features {
    list-style: none;
    margin-bottom: 2rem;
}

.detailed-features li {
    padding: 1rem 0;
    padding-left: 1.8rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

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

.service-meta {
    background: var(--secondary-color);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 2px;
}

.service-meta p {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

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

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

.guarantee-section p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-section {
    padding: 6rem 0;
}

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

.faq-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.contact-content {
    padding: 5rem 0;
}

.contact-info {
    flex: 1;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.contact-block a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-block a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.8rem;
}

.contact-extra {
    flex: 1;
}

.contact-card {
    background: var(--secondary-color);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 2px;
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

.contact-card ul {
    list-style: none;
}

.contact-card li {
    margin-bottom: 0.6rem;
}

.contact-card a {
    color: var(--accent-color);
    text-decoration: none;
}

.quick-links {
    list-style: none;
}

.quick-links li {
    margin-bottom: 0.8rem;
}

.quick-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

.quick-links a:hover {
    color: var(--accent-color);
}

.location-section {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.location-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

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

.location-note {
    background: var(--white);
    padding: 1.5rem;
    border-left: 3px solid var(--accent-color);
    margin-top: 2rem;
    font-size: 1.05rem;
    color: var(--text-light);
}

.legal-content {
    padding: 7rem 0 4rem;
}

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

.legal-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.legal-content ul,
.legal-content ol {
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.rodo-purpose,
.rodo-right {
    background: var(--secondary-color);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 3px solid var(--accent-color);
}

.cookie-table {
    background: var(--secondary-color);
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.cookie-table p {
    margin-bottom: 0.5rem;
}

.thanks-hero {
    padding: 8rem 0 4rem;
    text-align: center;
}

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

.thanks-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 3rem;
}

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

.thanks-details h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.thanks-details p {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.thanks-note {
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 1.5rem;
}

.thanks-next {
    margin-bottom: 3rem;
}

.thanks-next h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.thanks-steps {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
    padding-left: 2rem;
}

.thanks-steps li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.thanks-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s;
}

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

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

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

    .nav-menu a {
        padding: 0;
        border-bottom: none;
    }

    .container-flow {
        flex-direction: row;
        align-items: center;
    }

    .container-flow.reverse {
        flex-direction: row-reverse;
    }

    .trust-grid {
        flex-direction: row;
    }

    .benefits-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

    .team-grid {
        flex-direction: row;
    }

    .team-member {
        flex: 1;
    }

    .service-detailed {
        flex-direction: row;
        gap: 4rem;
    }

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

    .container-split {
        flex-direction: row;
        gap: 4rem;
    }

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

    .footer-links {
        flex-direction: row;
        gap: 4rem;
    }

    .location-details {
        flex-direction: row;
    }

    .thanks-cta {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .benefit-item {
        flex: 1 1 calc(33.333% - 1.67rem);
    }
}
