:root {
    --primary-color: #1a4d2e;
    --secondary-color: #2d6a4f;
    --accent-color: #f77f00;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-hover: 0 4px 25px rgba(0,0,0,0.12);
}

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

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    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;
}

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

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

.main-nav {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.split-left,
.split-right {
    flex: 1;
}

.split-left {
    display: flex;
    align-items: center;
    padding: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    max-width: 550px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-image {
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cta-secondary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #d66d00;
    transform: translateY(-2px);
}

.intro-statement {
    padding: 100px 20px;
    background: var(--bg-white);
    text-align: center;
}

.intro-statement h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

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

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

.split-text {
    flex: 1;
}

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

.split-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.split-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.process-cards {
    padding: 100px 20px;
    background: var(--bg-white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.process-card {
    flex: 1;
    min-width: 250px;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.card-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.process-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.process-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.testimonial-highlight {
    padding: 80px 20px;
    background: var(--primary-color);
    color: var(--bg-white);
}

.testimonial-highlight blockquote {
    text-align: center;
    border: none;
}

.testimonial-highlight p {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-highlight cite {
    font-style: normal;
    font-weight: 600;
    opacity: 0.9;
}

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

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.pricing-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border: 3px solid var(--accent-color);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

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

.service-description {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
    min-height: 80px;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.why-us-asymmetric {
    padding: 100px 20px;
    background: var(--bg-white);
}

.asymmetric-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.left-block {
    flex: 1.2;
}

.left-block h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.left-block p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
}

.right-blocks {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mini-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.mini-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.mini-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.form-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
}

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

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

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

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

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

.form-footer {
    margin-top: 30px;
}

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

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

.privacy-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
}

.privacy-note a {
    text-decoration: underline;
}

.final-cta-banner {
    padding: 100px 20px;
    background: var(--bg-light);
    text-align: center;
}

.final-cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.final-cta-banner p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 35px;
}

.main-footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 20px 30px;
}

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

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

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-col a {
    color: var(--bg-white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
}

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

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

.sticky-btn {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #d66d00;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

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

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

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

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

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

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

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

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

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

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

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

.page-header {
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e9ecef 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

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

.story-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

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

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.value-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.numbers-section {
    padding: 100px 20px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.numbers-section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.approach-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.approach-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.approach-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.testimonials-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-item {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.testimonial-item p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-item cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-dark);
}

.cta-about {
    padding: 100px 20px;
    background: var(--bg-white);
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-about p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 35px;
}

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

.service-block {
    max-width: 1200px;
    margin: 0 auto 100px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.service-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-content {
    flex: 1.2;
}

.service-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

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

.included-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

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

.service-pricing {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.btn-service {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

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

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

.extras-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.extra-item {
    flex: 1;
    min-width: 230px;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.extra-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.extra-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.warranty-info {
    padding: 100px 20px;
    background: var(--bg-white);
    text-align: center;
}

.warranty-info h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.warranty-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.warranty-list {
    max-width: 600px;
    margin: 30px auto;
    text-align: left;
    list-style: none;
}

.warranty-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-light);
}

.warranty-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.warranty-note {
    font-style: italic;
    margin-top: 25px;
}

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

.cta-services h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

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

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

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

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

.contact-map {
    flex: 1;
}

.map-placeholder {
    background: var(--bg-light);
    border-radius: 12px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

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

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

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

.thanks-page {
    padding: 120px 20px;
    background: var(--bg-white);
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
}

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

.thanks-message {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.service-confirmation {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.service-selected {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.thanks-content h2 {
    font-size: 1.8rem;
    margin: 50px 0 25px;
    color: var(--text-dark);
}

.next-steps {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 40px;
    counter-reset: step-counter;
}

.next-steps li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.next-steps li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 15px;
    width: 25px;
    height: 25px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: bold;
}

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

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 35px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.contact-reminder p {
    margin-bottom: 8px;
}

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

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

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

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

.legal-page ul {
    margin: 20px 0 20px 30px;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-page li {
    margin-bottom: 10px;
}

.legal-contact {
    margin-top: 60px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 10px;
    text-align: center;
}

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

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

.cookies-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

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

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

    .nav-menu {
        position: absolute;
        top: 70px;
        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: 400px;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        display: block;
        padding: 15px;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .split-left {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .split-container,
    .story-layout,
    .approach-layout,
    .service-block {
        flex-direction: column;
        gap: 40px;
    }

    .asymmetric-layout,
    .contact-grid {
        flex-direction: column;
    }

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

    .pricing-grid,
    .values-grid,
    .extras-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

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

    .section-title {
        font-size: 2rem;
    }
}