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

:root {
    --primary-color: #2c1810;
    --secondary-color: #8b4513;
    --accent-color: #d4af37;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --bg-light: #faf8f5;
    --bg-dark: #2c2c2c;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

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

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

.nav-menu {
    position: fixed;
    top: 60px;
    right: -100%;
    background: white;
    width: 250px;
    height: calc(100vh - 60px);
    list-style: none;
    padding: 30px 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
}

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

.nav-menu li {
    margin-bottom: 20px;
}

.nav-menu a {
    font-size: 1.1rem;
    color: var(--text-dark);
    display: block;
    padding: 10px;
    border-bottom: 1px solid var(--border-color);
}

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

.sticky-btn {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.hero-visual {
    margin-top: 60px;
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-overlay {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-text-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
}

.hero-text-layer::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    background: rgba(0, 0, 0, 0.45);
    z-index: -1;
    border-radius: 10px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.opening-line {
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.narrative-intro p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.problem-section {
    padding: 100px 20px;
    background: white;
}

.split-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.split-text h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.emphasis-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 30px;
}

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

.insight-reveal {
    padding: 90px 20px;
    background: linear-gradient(135deg, #2c1810 0%, #5a3a2a 100%);
    color: white;
}

.section-heading {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
}

.insight-reveal p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.9;
}

.quote-style {
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 300;
    padding: 30px;
    border-left: 4px solid var(--accent-color);
    margin: 40px 0;
    background: rgba(255, 255, 255, 0.05);
}

.storytelling-block {
    padding: 100px 20px;
    background: var(--bg-light);
}

.offset-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.story-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.story-card h3 {
    padding: 25px 25px 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.story-card p {
    padding: 0 25px 25px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.trust-builder {
    padding: 100px 20px;
    background: white;
}

.centered-heading {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, #f9f5ef 0%, #f0e8db 100%);
    border-left-color: var(--accent-color);
    border-left-width: 6px;
    padding: 45px;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

.visual-break {
    position: relative;
    margin: 80px 0;
}

.full-width-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    text-align: center;
}

.image-caption p {
    font-size: 1.1rem;
    font-style: italic;
}

.benefits-reveal {
    padding: 100px 20px;
    background: var(--bg-light);
}

.benefits-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-large,
.benefit-small {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.benefit-large h3,
.benefit-small h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-large p,
.benefit-small p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.process-section {
    padding: 100px 20px;
    background: white;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
}

.timeline-step {
    position: relative;
    padding-left: 80px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.timeline-step h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-step p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.cta-intermediate {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2c1810 0%, #5a3a2a 100%);
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.cta-box h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-button-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.cta-button-secondary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.services-showcase {
    padding: 100px 20px;
    background: white;
}

.services-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 60px;
    color: #666;
}

.services-grid-stacked {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.service-details p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.05rem;
}

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

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 30px 0;
    padding: 25px;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
}

.price-label {
    font-size: 0.95rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.services-note {
    margin-top: 60px;
    padding: 30px;
    background: #fffbf0;
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
}

.services-note p {
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.urgency-box {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--accent-color);
}

.urgency-box h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.urgency-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.urgency-emphasis {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 25px;
}

.form-section {
    padding: 100px 20px;
    background: white;
}

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

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

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-intro p {
    font-size: 1.1rem;
    color: #666;
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 1.05rem;
}

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

.checkbox-group label {
    flex-direction: row;
    align-items: flex-start;
    font-weight: 400;
}

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

.checkbox-group span {
    font-size: 0.95rem;
    line-height: 1.6;
}

.form-submit-btn {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2c1810 0%, #5a3a2a 100%);
}

.final-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

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

.site-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 20px 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 24, 16, 0.98);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

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

.btn-accept:hover,
.btn-reject:hover {
    transform: translateY(-2px);
}

.page-hero-small {
    margin-top: 60px;
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #2c1810 0%, #5a3a2a 100%);
    text-align: center;
    color: white;
}

.page-hero-small h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-hero-small p {
    font-size: 1.2rem;
    font-weight: 300;
}

.about-story {
    padding: 100px 20px;
    background: white;
}

.about-story h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.about-story p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

.value-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-team {
    padding: 100px 20px;
    background: white;
}

.team-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    box-shadow: var(--shadow);
}

.team-member h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.team-role {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2c1810 0%, #5a3a2a 100%);
}

.services-detailed {
    padding: 50px 20px 100px;
}

.service-detail-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-header img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-detail-content {
    padding: 40px 30px;
}

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

.service-description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--secondary-color);
}

.checklist {
    list-style: none;
    margin: 20px 0;
}

.checklist li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

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

.service-pricing-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 5px solid var(--accent-color);
}

.pricing-detail {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

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

.pricing-note {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.service-timeline {
    margin: 25px 0;
    padding: 20px;
    background: #f0f8ff;
    border-radius: 8px;
}

.service-timeline h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-timeline p {
    font-size: 1.05rem;
}

.service-cta-btn {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

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

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

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

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.services-final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2c1810 0%, #5a3a2a 100%);
}

.contact-page {
    padding: 80px 20px;
    background: white;
}

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

.contact-info-side h2,
.contact-form-side h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 2rem;
}

.contact-text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-text p {
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.contact-note {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.contact-note h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-note p {
    font-size: 1rem;
    line-height: 1.7;
}

.contact-form-side p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 30px;
}

.contact-map {
    margin-bottom: 0;
}

.map-placeholder {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    text-align: center;
}

.map-overlay p {
    font-size: 1.2rem;
    font-weight: 600;
}

.thanks-page {
    min-height: calc(100vh - 200px);
    padding: 100px 20px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    background: white;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

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

.thanks-main {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
}

.thanks-details {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next-steps {
    margin: 50px 0;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    min-width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    padding-top: 8px;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-dark);
}

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

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.legal-page {
    padding: 100px 20px;
    background: white;
    margin-top: 60px;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-update {
    font-size: 1rem;
    color: #999;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-page ul,
.legal-page ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

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

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

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

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        display: flex;
        gap: 30px;
        padding: 0;
        box-shadow: none;
        background: transparent;
    }

    .nav-menu li {
        margin-bottom: 0;
    }

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

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.6rem;
    }

    .split-layout {
        flex-direction: row;
        align-items: center;
    }

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

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

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

    .story-card {
        flex: 0 0 calc(50% - 25px);
    }

    .story-card.offset-top {
        margin-top: 50px;
    }

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

    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }

    .testimonial-card.featured {
        flex: 0 0 100%;
    }

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

    .benefit-large {
        flex: 0 0 100%;
    }

    .benefit-small {
        flex: 0 0 calc(50% - 15px);
    }

    .process-timeline {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .timeline-step {
        flex: 0 0 calc(50% - 25px);
    }

    .service-block {
        flex-direction: row;
    }

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

    .form-row {
        flex-direction: row;
    }

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

    .footer-col {
        flex: 1;
    }

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

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

    .value-card {
        flex: 0 0 calc(50% - 15px);
    }

    .team-layout {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 0 0 calc(50% - 20px);
    }

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

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

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

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .offset-grid {
        gap: 40px;
    }

    .story-card {
        flex: 0 0 calc(33.333% - 27px);
    }

    .story-card.offset-top {
        margin-top: 80px;
    }

    .team-member {
        flex: 0 0 calc(25% - 30px);
    }

    .service-detail-block {
        flex-direction: row;
    }

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

    .service-detail-header {
        flex: 0 0 45%;
    }

    .service-detail-header img {
        height: 100%;
    }

    .service-detail-content {
        flex: 1;
        padding: 50px;
    }
}