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

:root {
    --primary-color: #1a472a;
    --secondary-color: #2d5f3f;
    --accent-color: #c8a962;
    --text-dark: #1a1a1a;
    --text-light: #f8f8f8;
    --bg-light: #ffffff;
    --bg-gray: #f4f4f4;
    --bg-dark: #0f1e15;
    --border-color: #e0e0e0;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

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

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

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

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

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

.btn-accept:hover {
    background: #d4b573;
}

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

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

.nav-minimal {
    background: var(--bg-light);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

.logo a {
    color: var(--primary-color);
    text-decoration: none;
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

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

.sticky-cta.show {
    display: block;
}

.sticky-btn {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(200,169,98,0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(200,169,98,0.5);
}

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

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

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(15,30,21,0.75);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-content-narrow {
    max-width: 800px;
    text-align: center;
    color: var(--text-light);
}

.hero-content-narrow h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 800;
}

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

.btn-hero {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 18px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200,169,98,0.4);
}

.content-narrow {
    max-width: 740px;
    margin: 0 auto;
    padding: 100px 20px;
}

.content-narrow h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.content-narrow p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.inline-cta {
    margin: 40px 0;
}

.link-arrow {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.split-visual {
    background: var(--bg-gray);
    padding: 100px 20px;
}

.split-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

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

.split-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #333;
}

.split-image {
    flex: 1;
    min-width: 400px;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

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

.story-narrow {
    max-width: 740px;
    margin: 0 auto;
}

.story-narrow h2 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 35px;
    color: var(--primary-color);
    font-weight: 700;
}

.story-narrow p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.insight-section {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 100px 20px;
}

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

.insight-container h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.insight-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.insight-card {
    flex: 1;
    background: rgba(255,255,255,0.05);
    padding: 45px 35px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.insight-card.highlight {
    background: var(--secondary-color);
    border: 2px solid var(--accent-color);
}

.insight-card h3 {
    font-size: 26px;
    margin-bottom: 25px;
    color: var(--accent-color);
}

.insight-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 16px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200,169,98,0.4);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-dark);
    padding: 16px 36px;
    border: 2px solid var(--text-dark);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: var(--text-light);
}

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

.trust-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h2 {
    font-size: 44px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.trust-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

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

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.testimonials-inline {
    background: var(--bg-gray);
    padding: 100px 20px;
}

.testimonial-narrow {
    max-width: 800px;
    margin: 0 auto 50px;
}

.testimonial-narrow:last-child {
    margin-bottom: 0;
}

.testimonial-narrow blockquote {
    background: var(--bg-light);
    padding: 40px;
    border-left: 5px solid var(--accent-color);
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-narrow blockquote p {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.testimonial-narrow blockquote footer {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

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

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

.benefits-container h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 700;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.benefit-icon {
    font-size: 32px;
    color: var(--accent-color);
    font-weight: 700;
    min-width: 40px;
}

.benefit-text h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.benefit-text p {
    font-size: 17px;
    line-height: 1.6;
    color: #444;
}

.how-we-work {
    background: var(--bg-gray);
    padding: 100px 20px;
}

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

.how-container h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 700;
}

.steps-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.step-card {
    flex: 1;
    min-width: 260px;
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 20px;
    opacity: 0.7;
}

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

.step-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

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

.pricing-container {
    max-width: 1300px;
    margin: 0 auto;
}

.pricing-container h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-intro {
    text-align: center;
    font-size: 19px;
    color: #555;
    margin-bottom: 60px;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.price-card.featured {
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(200,169,98,0.2);
}

.badge,
.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

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

.price {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.price-description {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

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

.features-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    line-height: 1.5;
    color: #444;
}

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

.btn-card {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.urgency-block {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 100px 20px;
}

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

.urgency-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
}

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

.urgency-cta {
    margin-top: 50px;
}

.btn-urgency {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 20px 45px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 19px;
    transition: all 0.3s ease;
}

.btn-urgency:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200,169,98,0.5);
}

.urgency-note {
    margin-top: 20px;
    font-size: 15px;
    opacity: 0.8;
}

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

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

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

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    background: var(--bg-gray);
    padding: 50px 40px;
    border-radius: 10px;
}

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

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

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

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

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

.checkbox-group a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

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

.final-push {
    background: var(--bg-gray);
    padding: 100px 20px;
}

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

.final-content h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.final-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 20px 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: 200px;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-column ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
    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 {
    font-size: 14px;
    opacity: 0.7;
}

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

.header-content {
    max-width: 900px;
    margin: 0 auto;
}

.header-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.header-content p {
    font-size: 20px;
    opacity: 0.95;
}

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

.mission-section {
    background: var(--bg-gray);
    padding: 100px 20px;
}

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

.mission-card {
    flex: 1;
    background: var(--bg-light);
    padding: 45px 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.mission-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

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

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

.team-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.team-container p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 50px;
    text-align: center;
    color: #555;
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.approach-item {
    background: var(--bg-gray);
    padding: 35px 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

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

.approach-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    text-align: left;
    margin: 0;
}

.results-section {
    background: var(--bg-gray);
    padding: 100px 20px;
}

.results-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.results-content h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.results-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #444;
}

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

.services-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-block {
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

.service-block.highlight {
    border: 3px solid var(--accent-color);
}

.badge-popular {
    position: absolute;
    top: 25px;
    right: 25px;
}

.service-header {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-header h2 {
    font-size: 32px;
    font-weight: 700;
}

.service-price {
    font-size: 38px;
    font-weight: 800;
    color: var(--accent-color);
}

.service-content {
    padding: 40px;
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #444;
}

.service-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

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

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

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

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

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,169,98,0.4);
}

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

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

.comparison-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.comparison-container p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

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

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background: var(--bg-gray);
    padding: 50px 40px;
    border-radius: 10px;
}

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

.info-block {
    margin-bottom: 35px;
}

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

.info-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.info-block a {
    color: var(--secondary-color);
    text-decoration: none;
}

.info-block a:hover {
    text-decoration: underline;
}

.info-note {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
    margin-top: 30px;
}

.info-note p {
    font-size: 15px;
    color: #555;
    margin: 0;
}

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

.map-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.map-container h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.map-container p {
    font-size: 17px;
    color: #555;
}

.thanks-section {
    background: var(--bg-light);
    padding: 100px 20px;
    min-height: 70vh;
}

.thanks-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

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

.thanks-message {
    font-size: 19px;
    color: #555;
    margin-bottom: 30px;
}

.service-confirmation {
    background: var(--bg-gray);
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
    font-size: 17px;
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-next {
    margin: 60px 0;
}

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

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 700px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
    background: var(--bg-gray);
    padding: 25px;
    border-radius: 8px;
}

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

.step-item p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding-top: 8px;
}

.thanks-cta {
    margin-top: 50px;
}

.thanks-cta p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #555;
}

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

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

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

.legal-date {
    font-size: 15px;
    color: #888;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.legal-container h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #444;
}

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

.legal-container ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #444;
}

.legal-container a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

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

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-light);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

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

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

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

    .content-narrow h2,
    .story-narrow h2 {
        font-size: 30px;
    }

    .content-narrow p,
    .story-narrow p {
        font-size: 17px;
    }

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

    .split-image {
        min-width: 100%;
    }

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

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

    .steps-flow {
        flex-direction: column;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .mission-container {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
    }

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

    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }

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

    .badge-popular {
        position: static;
        display: inline-block;
        margin-bottom: 10px;
    }

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

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

    .cookie-content {
        font-size: 13px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content-narrow h1 {
        font-size: 28px;
    }

    .hero-lead {
        font-size: 16px;
    }

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

    .price-card {
        min-width: 100%;
    }
}