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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #8b7355;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-white);
}

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

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 9999;
    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: 2rem;
}

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

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

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

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

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

.btn-cookie-accept:hover {
    background: #9d8365;
}

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

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

.hero-overlay {
    position: relative;
    height: 85vh;
    min-height: 600px;
    margin-top: 70px;
    overflow: hidden;
}

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

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-text-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-text-overlay h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 900px;
}

.hero-text-overlay p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    font-weight: 300;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: #9d8365;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 115, 85, 0.4);
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.story-intro {
    background: var(--bg-white);
    padding: 5rem 0;
}

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

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

.problem-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.problem-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 2.5rem;
    border-left: 4px solid var(--accent-color);
}

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

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

.insight-reveal {
    background: var(--primary-color);
    color: white;
    padding: 6rem 0;
}

.insight-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.insight-reveal p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-inline-block {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.cta-btn-large {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: var(--primary-color);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.trust-builder {
    padding: 5rem 0;
    background: var(--bg-light);
}

.trust-builder h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.process-timeline {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.timeline-item {
    flex: 1;
    min-width: 250px;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

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

.testimonials-flow {
    background: var(--bg-white);
    padding: 5rem 0;
}

.testimonials-flow h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.testimonial-block {
    background: var(--bg-light);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-left: 5px solid var(--accent-color);
    border-radius: 4px;
}

.testimonial-block p {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.testimonial-author {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
}

.benefit-reveal {
    padding: 5rem 0;
    background: var(--bg-light);
}

.benefit-reveal h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.benefit-cards {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}

.benefit-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.benefit-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.benefit-item p {
    padding: 0 1.5rem 2rem;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--accent-color);
    color: white;
    padding: 1.2rem 2rem;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cta-sticky-bar.show {
    display: flex;
}

.cta-sticky-bar span {
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-sticky-btn {
    padding: 0.8rem 2rem;
    background: white;
    color: var(--accent-color);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-sticky-btn:hover {
    background: var(--bg-light);
}

.services-pricing {
    padding: 6rem 0;
    background: var(--bg-white);
}

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

.services-pricing > .content-narrow > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.order-form {
    max-width: 800px;
    margin: 0 auto;
}

.service-selection {
    margin-bottom: 3rem;
}

.service-option {
    margin-bottom: 1.5rem;
}

.service-option input[type="radio"] {
    display: none;
}

.service-option label {
    display: block;
    padding: 2rem;
    background: var(--bg-light);
    border: 3px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option input[type="radio"]:checked + label {
    background: white;
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.2);
}

.service-option label:hover {
    border-color: var(--accent-color);
}

.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.3rem;
    color: var(--primary-color);
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-option p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.form-fields {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

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

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

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

.btn-submit:hover {
    background: #9d8365;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 115, 85, 0.3);
}

.urgency-block {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.urgency-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

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

.final-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-btn-final {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: var(--accent-color);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-btn-final:hover {
    background: #9d8365;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 115, 85, 0.4);
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

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

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

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

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

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

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.page-header {
    margin-top: 70px;
    padding: 4rem 0;
    background: var(--bg-light);
    text-align: center;
}

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

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.about-story {
    padding: 5rem 0;
    background: var(--bg-white);
}

.about-split {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    border-radius: 8px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

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

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

.philosophy-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

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

.team-intro {
    padding: 5rem 0;
    background: var(--bg-white);
}

.team-intro h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

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

.team-member {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

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

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

.values-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

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

.value-item {
    background: var(--bg-white);
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
}

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

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

.process-detail {
    padding: 5rem 0;
    background: var(--bg-white);
}

.process-detail h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

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

.step-detail {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.step-detail.reverse {
    flex-direction: row-reverse;
}

.step-visual {
    flex: 1;
    min-width: 300px;
}

.step-visual img {
    border-radius: 8px;
}

.step-text {
    flex: 1;
    min-width: 300px;
}

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

.step-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-section-about {
    padding: 5rem 0;
    background: var(--bg-light);
    text-align: center;
}

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

.cta-section-about p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.services-detail {
    padding: 5rem 0;
    background: var(--bg-white);
}

.service-detail-item {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

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

.service-price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-detail-content > p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.service-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

.service-detail-image img {
    border-radius: 8px;
}

.cta-btn-service {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-btn-service:hover {
    background: #9d8365;
    transform: translateY(-2px);
}

.guarantee-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.guarantee-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.guarantee-item {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

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

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

.faq-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

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

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

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

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

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

.cta-section-services {
    padding: 5rem 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-section-services h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cta-section-services p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-info {
    padding: 5rem 0;
    background: var(--bg-white);
}

.contact-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

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

.contact-detail {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-detail strong {
    color: var(--primary-color);
}

.contact-detail a {
    color: var(--accent-color);
    text-decoration: underline;
}

.hours-list {
    margin-bottom: 1.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.6;
}

.map-placeholder {
    padding: 3rem 0;
    background: var(--bg-white);
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-cta {
    padding: 5rem 0;
    background: var(--bg-light);
    text-align: center;
}

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

.contact-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-hero {
    margin-top: 70px;
    padding: 4rem 0;
    background: var(--bg-light);
    text-align: center;
}

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

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

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

.thanks-content {
    padding: 5rem 0;
    background: var(--bg-white);
}

.thanks-info-box {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-info-box h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
}

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

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

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

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

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

.thanks-contact-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-contact-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.thanks-email {
    font-size: 1.2rem;
    font-weight: 600;
}

.thanks-email a {
    color: var(--accent-color);
}

.thanks-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-back-home,
.btn-view-services {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-back-home:hover {
    background: #9d8365;
}

.btn-view-services {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

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

.thanks-extra-info {
    padding: 5rem 0;
    background: var(--bg-light);
}

.thanks-extra-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-extra-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.legal-page {
    margin-top: 70px;
    background: var(--bg-white);
}

.legal-date {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-page p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.2rem;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
    color: var(--text-color);
}

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

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

.legal-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.legal-table td {
    color: var(--text-color);
}

.legal-footer-note {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

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

    .nav-menu a {
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .problem-grid,
    .process-timeline,
    .benefit-cards,
    .team-grid,
    .guarantee-grid {
        flex-direction: column;
    }

    .about-split,
    .step-detail {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-sticky-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .hero-text-overlay h1 {
        font-size: 1.8rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .price {
        font-size: 1.4rem;
    }
}