:root {
    --primary-color: #2c3e50;
    --secondary-color: #c99b6e;
    --accent-color: #8b7355;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f5f2;
    --bg-white: #ffffff;
    --border-color: #e0d8d0;
    --success-color: #27ae60;
    --error-color: #e74c3c;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 16px;
}

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

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

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

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

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: var(--secondary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: var(--accent-color);
}

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

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    background: rgba(44, 62, 80, 0.5);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-title-large {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
}

.cta-hero-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 18px 50px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(201, 155, 110, 0.4);
}

.cta-hero-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 155, 110, 0.5);
}

.story-intro {
    padding: 100px 0;
    background: var(--bg-light);
}

.intro-text {
    font-size: 26px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 400;
}

.intro-text-continue {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.visual-break {
    padding: 0;
}

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

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.split-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-white);
}

.split-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
    line-height: 1.3;
}

.split-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.problem-amplify {
    padding: 120px 0;
    background: var(--primary-color);
    color: white;
}

.section-heading-center {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    font-weight: 700;
    color: white;
}

.cards-grid-3 {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.card-insight {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
}

.card-insight h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.card-insight p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.trust-builder {
    padding: 120px 0;
    background: var(--bg-white);
}

.section-heading-elegant {
    font-size: 48px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

.lead-paragraph {
    font-size: 20px;
    line-height: 1.8;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 80px;
}

.benefits-stack {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.benefit-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.benefit-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    opacity: 0.3;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.testimonial-inline {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonial-featured {
    display: flex;
    align-items: center;
    gap: 40px;
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    flex-shrink: 0;
}

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

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

.cta-mid-page {
    padding: 100px 0;
    background: var(--accent-color);
    text-align: center;
}

.cta-mid-page h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 30px;
}

.cta-secondary {
    display: inline-block;
    background: white;
    color: var(--accent-color);
    padding: 18px 50px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.collection-reveal {
    padding: 120px 0;
    background: var(--bg-white);
}

.section-heading-large {
    font-size: 56px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 800;
}

.section-subheading {
    text-align: center;
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 80px;
}

.services-catalog {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 50px;
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.service-details {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-details p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.service-price-reveal {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

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

.btn-select-service {
    background: var(--secondary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    align-self: flex-start;
    transition: all 0.3s ease;
}

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

.urgency-block {
    padding: 80px 0;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.urgency-content {
    text-align: center;
    color: white;
}

.urgency-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.urgency-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.urgency-highlight {
    font-size: 22px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    margin-top: 10px;
}

.form-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.form-heading {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-description {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.order-form {
    background: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    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(--secondary-color);
}

.form-group textarea {
    resize: vertical;
}

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

.form-group-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.form-group-checkbox label {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.btn-submit-form {
    width: 100%;
    background: var(--secondary-color);
    color: white;
    padding: 18px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-submit-form:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.3);
}

.final-testimonials {
    padding: 100px 0;
    background: var(--bg-white);
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.testimonial-name {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.site-footer {
    background: var(--primary-color);
    color: white;
    padding: 80px 0 30px;
}

.footer-columns {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

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

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

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

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

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

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

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

.sticky-cta-btn {
    background: var(--secondary-color);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 6px 25px rgba(201, 155, 110, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 155, 110, 0.5);
}

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

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

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

.cookie-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-reject:hover {
    border-color: white;
}

.page-hero-simple {
    padding: 180px 0 80px;
    background: var(--bg-light);
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-intro {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-story {
    padding: 100px 0;
}

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 260px;
    background: white;
    padding: 40px;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.team-intro h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.team-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.stats-section {
    padding: 100px 0;
    background: var(--primary-color);
}

.stats-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

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

.cta-section-about h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-section-about p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.cta-button-large {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 18px 50px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.3);
}

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

.page-hero-services h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.services-full-catalog {
    padding: 100px 0;
}

.catalog-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.catalog-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.showcase-item {
    display: flex;
    gap: 60px;
    align-items: center;
}

.showcase-item.reverse {
    flex-direction: row-reverse;
}

.showcase-image-large {
    flex: 1.2;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.showcase-content {
    flex: 1;
}

.showcase-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.showcase-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    font-size: 16px;
    color: var(--text-dark);
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.price-display {
    margin-bottom: 25px;
}

.price-from {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

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

.btn-service-order {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 16px 45px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-service-order:hover {
    background: var(--accent-color);
    transform: translateX(5px);
}

.why-choose-us {
    padding: 100px 0;
    background: var(--bg-light);
}

.benefits-columns {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

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

.benefit-col h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.benefit-col p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

.cta-services-bottom {
    padding: 100px 0;
    background: var(--accent-color);
    text-align: center;
}

.cta-services-bottom h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
}

.cta-services-bottom p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.contact-info-section {
    padding: 100px 0;
}

.contact-layout {
    display: flex;
    gap: 80px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

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

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

.contact-item a {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 62, 80, 0.9) 0%, transparent 100%);
    padding: 30px;
    color: white;
}

.map-overlay p {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.map-address {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
}

.visit-info {
    padding: 80px 0;
    background: var(--bg-light);
}

.visit-info h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.visit-info p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.faq-contact {
    padding: 100px 0;
}

.faq-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

.cta-contact h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-contact p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page {
    padding: 150px 0 80px;
}

.legal-date {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.legal-content h1 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--accent-color);
    font-weight: 600;
}

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

.cookie-table thead {
    background: var(--bg-light);
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

.cookie-table th {
    font-weight: 700;
    color: var(--primary-color);
}

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

.thanks-page {
    padding: 200px 0 150px;
    background: var(--bg-light);
}

.thanks-content {
    text-align: center;
    background: white;
    padding: 80px 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.order-summary {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    font-size: 16px;
    color: var(--text-dark);
}

.thanks-next-steps {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 50px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

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

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

.thanks-contact-info {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.thanks-contact-info p {
    font-size: 14px;
    color: var(--text-light);
}

.thanks-contact-info a {
    color: var(--accent-color);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .floating-nav {
        flex-wrap: wrap;
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-title-large {
        font-size: 48px;
    }

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

    .service-card {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

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

    .story-layout {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .floating-nav {
        top: 0;
        border-radius: 0;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-title-large {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .intro-text {
        font-size: 20px;
    }

    .section-heading-center,
    .section-heading-elegant,
    .section-heading-large {
        font-size: 32px;
    }

    .split-text {
        padding: 40px 30px;
    }

    .split-text h2 {
        font-size: 32px;
    }

    .cards-grid-3 {
        flex-direction: column;
    }

    .service-details {
        padding: 30px;
    }

    .service-details h3 {
        font-size: 26px;
    }

    .testimonial-featured {
        flex-direction: column;
        padding: 30px;
    }

    .order-form {
        padding: 30px;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .page-hero-simple h1,
    .page-hero-services h1 {
        font-size: 36px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

    .thanks-content {
        padding: 40px 30px;
    }

    .thanks-content h1 {
        font-size: 32px;
    }

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