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

:root {
    --primary-color: #2d5f3f;
    --secondary-color: #6b8e23;
    --accent-color: #d4a574;
    --dark-color: #1a1a1a;
    --light-color: #f8f9f5;
    --gray-color: #666;
    --white: #ffffff;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 4px 24px rgba(0,0,0,0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--dark-color);
    background: var(--white);
    overflow-x: hidden;
}

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

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

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

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

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

.container-form {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-story {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: var(--shadow-lg);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-minimal {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li a {
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.hero-fullscreen {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: 36px;
    line-height: 1.5;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.4);
}

.cta-hero {
    display: inline-block;
    padding: 18px 42px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.cta-hero:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}

.intro-narrow {
    padding: 80px 20px;
    background: var(--light-color);
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--gray-color);
}

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

.story-image {
    margin-bottom: 40px;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray-color);
}

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

.insight-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.insight-content p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-inline-section {
    padding: 60px 20px;
    background: var(--secondary-color);
}

.cta-box {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--gray-color);
}

.btn-inline {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

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

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

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
    color: var(--gray-color);
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
}

.visual-break {
    position: relative;
    height: 500px;
    overflow: hidden;
}

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

.overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
}

.overlay-text h3 {
    color: var(--white);
    font-size: 40px;
    text-align: center;
    padding: 0 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.benefits-reveal {
    padding: 100px 20px;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.5;
}

.benefit-item h4 {
    font-size: 24px;
    color: var(--dark-color);
}

.benefit-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-color);
}

.problem-amplify {
    padding: 80px 20px;
    background: var(--light-color);
}

.problem-amplify h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--dark-color);
    text-align: center;
}

.problem-amplify p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray-color);
}

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

.section-title-alt {
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.section-intro {
    text-align: center;
    font-size: 20px;
    margin-bottom: 60px;
    color: var(--gray-color);
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    background: linear-gradient(to bottom, var(--white), var(--light-color));
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-header h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.service-tagline {
    font-size: 16px;
    color: var(--gray-color);
    margin-bottom: 24px;
}

.service-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-color);
}

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

.service-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    font-size: 14px;
    color: var(--gray-color);
    margin-top: 4px;
}

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

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

.urgency-section {
    padding: 80px 20px;
    background: var(--accent-color);
}

.urgency-box {
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

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

.urgency-box p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--gray-color);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.form-intro p {
    font-size: 18px;
    color: var(--gray-color);
}

.main-form {
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
}

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

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

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

.final-cta {
    padding: 100px 20px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 36px;
}

.btn-cta-large {
    display: inline-block;
    padding: 20px 48px;
    background: var(--white);
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.about-section {
    padding: 100px 20px;
    background: var(--white);
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray-color);
}

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

.footer-columns {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    opacity: 0.8;
}

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

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

.footer-col a {
    color: var(--white);
    opacity: 0.8;
    font-size: 14px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    pointer-events: auto;
}

.sticky-btn {
    display: block;
    padding: 16px 32px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

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

.page-header {
    padding: 80px 20px 60px;
    background: var(--light-color);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.header-subtitle {
    font-size: 20px;
    color: var(--gray-color);
}

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

.about-story {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.story-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.story-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--gray-color);
}

.mission-section {
    padding: 60px 0;
    text-align: center;
}

.mission-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.mission-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray-color);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 60px 0;
}

.value-item {
    padding: 30px;
    background: var(--light-color);
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-color);
}

.team-section {
    padding: 60px 0;
    text-align: center;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.team-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray-color);
}

.cta-about {
    margin-top: 60px;
    padding: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    text-align: center;
}

.cta-about h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--white);
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--light-color);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

.services-intro {
    padding: 40px 20px 60px;
    text-align: center;
}

.intro-large {
    font-size: 20px;
    line-height: 1.8;
    color: var(--gray-color);
}

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

.service-detail-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 50px;
    margin-bottom: 40px;
    position: relative;
}

.service-detail-card.featured-service {
    border-color: var(--primary-color);
    border-width: 3px;
    background: linear-gradient(to bottom, var(--white), var(--light-color));
}

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

.service-badge-large {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
}

.service-detail-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.service-detail-header h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.service-price-large {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
}

.service-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--gray-color);
}

.service-includes {
    margin-bottom: 30px;
}

.service-includes h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.service-includes ul {
    list-style: none;
}

.service-includes li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-color);
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.btn-service-detail {
    display: block;
    width: 100%;
    padding: 16px 32px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.services-guarantee {
    padding: 80px 20px;
    background: var(--light-color);
    text-align: center;
}

.services-guarantee h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.services-guarantee p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray-color);
}

.services-cta {
    padding: 80px 20px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.services-cta h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.services-cta p {
    font-size: 20px;
    margin-bottom: 36px;
}

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

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.contact-info > p {
    font-size: 17px;
    margin-bottom: 30px;
    color: var(--gray-color);
}

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

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

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-color);
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 500;
}

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

.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.contact-form-wrapper p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--gray-color);
}

.contact-cta {
    margin-top: 40px;
    padding: 40px;
    background: var(--light-color);
    border-radius: 8px;
}

.contact-cta h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.contact-cta p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--gray-color);
}

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

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--dark-color);
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

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

.legal-page {
    padding: 80px 20px;
}

.legal-intro {
    font-size: 16px;
    color: var(--gray-color);
    margin-bottom: 40px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--gray-color);
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: var(--gray-color);
}

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

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

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

.cookie-table td {
    font-size: 14px;
    color: var(--gray-color);
}

.thanks-section {
    padding: 100px 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.thanks-main {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--gray-color);
}

.thanks-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--gray-color);
}

.service-selected {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 18px;
}

.thanks-next-steps {
    margin: 50px 0;
    padding: 40px;
    background: var(--light-color);
    border-radius: 8px;
    text-align: left;
}

.thanks-next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-color);
    text-align: center;
}

.thanks-next-steps ol {
    max-width: 500px;
    margin: 0 auto;
}

.thanks-next-steps li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--gray-color);
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-top: 40px;
}

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

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

    .cookie-content p {
        text-align: left;
    }

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

    .container-story {
        display: flex;
        flex-direction: row;
        gap: 60px;
        align-items: center;
    }

    .story-image {
        flex: 1;
        margin-bottom: 0;
    }

    .story-content {
        flex: 1;
    }

    .testimonials-flow {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 1;
        min-width: 300px;
    }

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

    .benefit-item {
        flex: 1;
        min-width: 280px;
    }

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

    .footer-col {
        flex: 1;
    }

    .about-story {
        flex-direction: row;
        align-items: center;
    }

    .story-img {
        flex: 1;
        max-width: 50%;
    }

    .story-text {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1;
        min-width: 280px;
    }

    .cta-buttons {
        flex-direction: row;
    }

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

    .contact-info,
    .contact-form-wrapper {
        flex: 1;
    }

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

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        box-shadow: var(--shadow);
        padding: 20px;
        display: none;
        gap: 16px;
    }

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

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

    .sticky-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}
