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

:root {
    --primary-color: #2c3e50;
    --accent-color: #c49b63;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
}

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

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 280px;
}

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

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

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

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

.cookie-btn:hover {
    transform: translateY(-2px);
}

.nav-minimal {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-color);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta-btn {
    background: var(--accent-color);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(196, 155, 99, 0.4);
}

.hero-immersive {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 40px;
}

.hero-content-narrow {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.hero-content-narrow h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 28px;
    font-weight: 800;
    letter-spacing: -1px;
}

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

.cta-hero {
    background: var(--accent-color);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.content-flow {
    max-width: 680px;
    margin: 0 auto;
}

.content-flow p {
    font-size: 21px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.opening-line {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
}

.insight-block {
    padding: 120px 40px;
    background: var(--bg-light);
}

.insight-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.insight-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.insight-item {
    display: flex;
    gap: 24px;
}

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

.insight-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.insight-visual {
    flex: 1;
}

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

.problem-reveal {
    padding: 100px 40px;
    background: var(--primary-color);
    color: white;
}

.problem-container {
    max-width: 1100px;
    margin: 0 auto;
}

.problem-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.problem-card {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.problem-card p {
    font-size: 19px;
    line-height: 1.7;
}

.problem-conclusion {
    font-size: 24px;
    text-align: center;
    font-weight: 600;
    font-style: italic;
}

.transformation-story {
    padding: 120px 40px;
    background: var(--bg-white);
}

.story-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.story-image-left {
    flex: 1;
}

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

.story-text-right {
    flex: 1;
}

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

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

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

.method-container {
    max-width: 1000px;
    margin: 0 auto;
}

.method-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.method-intro {
    font-size: 21px;
    text-align: center;
    margin-bottom: 70px;
    color: var(--text-light);
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.method-step {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.step-visual {
    flex: 1;
    height: 280px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 8px;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.social-proof {
    padding: 120px 40px;
    background: var(--bg-white);
}

.testimonials-flow {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial-large {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 8px;
    border-left: 5px solid var(--accent-color);
}

.testimonial-large blockquote {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.testimonial-large cite {
    font-size: 17px;
    color: var(--text-light);
    font-style: normal;
}

.testimonial-pair {
    display: flex;
    gap: 30px;
}

.testimonial-small {
    flex: 1;
    background: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
}

.testimonial-small blockquote {
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.testimonial-small cite {
    font-size: 15px;
    color: var(--text-light);
    font-style: normal;
}

.urgency-element {
    padding: 80px 40px;
    background: var(--accent-color);
    color: white;
}

.urgency-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.urgency-box h2 {
    font-size: 36px;
    margin-bottom: 28px;
}

.urgency-box p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

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

.services-container h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.services-intro {
    font-size: 21px;
    text-align: center;
    margin-bottom: 70px;
    color: var(--text-light);
}

.service-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.service-block {
    flex: 1;
    min-width: 320px;
    background: var(--bg-light);
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

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

.service-block.featured {
    border-color: var(--accent-color);
    background: var(--bg-white);
}

.service-badge {
    position: absolute;
    top: -15px;
    left: 40px;
    background: var(--accent-color);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-header h3 {
    font-size: 23px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.service-duration {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-body {
    flex: 1;
    margin-bottom: 30px;
}

.service-body p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-best {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-select {
    background: var(--accent-color);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select:hover {
    transform: translateY(-2px);
}

.service-select.selected {
    background: var(--success-color);
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-intro {
    font-size: 19px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
}

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

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

.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: 14px 18px;
    border: 2px solid var(--border-color);
    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(--accent-color);
}

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

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.final-cta {
    padding: 100px 40px;
    background: var(--primary-color);
    color: white;
}

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

.final-cta-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

.final-cta-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.cta-final {
    background: var(--accent-color);
    color: white;
    padding: 18px 42px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

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

.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 70px 40px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: var(--accent-color);
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    color: #aaa;
}

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

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

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #777;
    font-size: 14px;
}

.page-hero {
    padding: 120px 40px 80px;
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    color: white;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

.page-hero-content p {
    font-size: 22px;
    opacity: 0.9;
}

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

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 80px;
}

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

.about-section p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-section.reverse {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
}

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

.about-text {
    flex: 1;
}

.belief-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 40px;
}

.belief-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.belief-item p {
    font-size: 18px;
    color: var(--text-light);
}

.about-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 40px;
    background: var(--bg-light);
    border-radius: 8px;
}

.stat {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 17px;
    color: var(--text-light);
}

.services-detailed {
    padding: 80px 40px;
}

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

.service-detail {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-header {
    background: var(--primary-color);
    color: white;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-detail-header h2 {
    font-size: 30px;
    flex: 1;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
}

.service-badge-inline {
    background: var(--accent-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-detail-body {
    padding: 40px;
}

.service-description {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: var(--text-dark);
}

.service-detail-body h3 {
    font-size: 22px;
    margin-bottom: 18px;
    margin-top: 30px;
    color: var(--primary-color);
}

.service-detail-body p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

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

.service-features li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

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

.service-cta {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 14px 32px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.services-cta-section {
    padding: 80px 40px;
    background: var(--bg-light);
    text-align: center;
}

.services-cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-cta-content p {
    font-size: 19px;
    margin-bottom: 35px;
    color: var(--text-light);
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 16px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

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

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

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1.5;
}

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

.contact-info > p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

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

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

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

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

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

.contact-areas {
    flex: 1;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

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

.contact-areas > p {
    font-size: 17px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

.areas-list li {
    padding: 12px 0 12px 28px;
    position: relative;
    font-size: 17px;
}

.areas-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.areas-note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
}

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

.contact-cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-cta-content p {
    font-size: 19px;
    margin-bottom: 35px;
}

.thanks-section {
    padding: 100px 40px;
    min-height: 70vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.thanks-main {
    font-size: 22px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.thanks-service {
    margin-bottom: 60px;
}

.service-confirmation {
    font-size: 19px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 6px;
    color: var(--primary-color);
}

.thanks-next {
    margin-bottom: 60px;
    text-align: left;
}

.thanks-next h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.next-step {
    display: flex;
    gap: 24px;
}

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

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-content p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
}

.thanks-meanwhile {
    margin-bottom: 50px;
}

.thanks-meanwhile h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.thanks-meanwhile > p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.thanks-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.thanks-link {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 14px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-link:hover {
    transform: translateY(-2px);
}

.thanks-contact {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 6px;
}

.thanks-contact p {
    font-size: 17px;
    margin-bottom: 8px;
}

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

.legal-page {
    padding: 60px 40px 100px;
}

.legal-container {
    max-width: 850px;
    margin: 0 auto;
}

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

.legal-updated {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 50px;
}

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

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

.legal-container p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-container ul {
    margin: 20px 0 30px 25px;
}

.legal-container ul li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

@media (max-width: 968px) {
    .insight-wrapper,
    .story-wrapper,
    .method-step,
    .about-section.reverse,
    .contact-container {
        flex-direction: column;
    }

    .method-step.reverse {
        flex-direction: column;
    }

    .testimonial-pair {
        flex-direction: column;
    }

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

    .service-block {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

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

    .hero-content-narrow h1 {
        font-size: 36px;
    }

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

    .page-hero-content h1 {
        font-size: 36px;
    }

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

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

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

    .footer-container {
        flex-direction: column;
        gap: 35px;
    }

    .main-form {
        padding: 30px 20px;
    }

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

    .about-stats {
        flex-direction: column;
    }

    .contact-areas {
        order: -1;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 16px 20px;
    }

    body {
        font-size: 16px;
    }

    .hero-content-narrow h1 {
        font-size: 30px;
    }

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

    .cookie-actions {
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
    }
}