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

:root {
    --primary-color: #2c5f4f;
    --primary-dark: #1a3d30;
    --primary-light: #3d7a64;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #6a6a6a;
    --background-light: #f8f7f5;
    --background-white: #ffffff;
    --border-color: #e0ddd8;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

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

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(--primary-dark);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    background: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

.nav {
    display: none;
    gap: 32px;
}

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

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

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.hero-text {
    max-width: 580px;
    margin: 0 auto;
    color: var(--background-white);
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    min-height: 400px;
}

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

.intro-section {
    padding: 80px 24px;
    background: var(--background-light);
    text-align: center;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.intro-section p {
    font-size: 19px;
    color: var(--text-light);
    max-width: 720px;
    margin: 0 auto;
}

.split-feature {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.split-image-left,
.split-image-right {
    flex: 1;
    min-height: 400px;
}

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

.split-content-right,
.split-content-left {
    flex: 1;
    padding: 60px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--background-white);
}

.split-content-right h3,
.split-content-left h3,
.split-content-right h2,
.split-content-left h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.split-content-right p,
.split-content-left p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-text {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 12px;
    transition: transform 0.3s ease;
}

.btn-text:hover {
    transform: translateX(4px);
}

.feature-list {
    list-style: none;
    margin-top: 24px;
}

.feature-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-light);
}

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

.services-grid {
    padding: 80px 24px;
    background: var(--background-white);
}

.section-header-center {
    text-align: center;
    margin-bottom: 56px;
}

.section-header-center h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.section-header-center p {
    font-size: 18px;
    color: var(--text-light);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 1 1 100%;
    max-width: 380px;
    background: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.btn-primary,
.btn-secondary,
.btn-service {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-service {
    width: 100%;
    background: var(--primary-light);
    color: var(--background-white);
}

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

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

.process-section {
    padding: 80px 24px;
    background: var(--background-light);
}

.process-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 56px;
    color: var(--text-dark);
    font-weight: 700;
}

.process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.process-step {
    flex: 1 1 100%;
    max-width: 280px;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
    opacity: 0.8;
}

.process-step h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.testimonials-section {
    padding: 80px 24px;
    background: var(--background-white);
}

.testimonials-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 56px;
    color: var(--text-dark);
    font-weight: 700;
}

.testimonial-card {
    background: var(--background-light);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 32px;
    border-left: 4px solid var(--primary-color);
}

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

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

.cta-form-section {
    padding: 80px 24px;
    background: var(--background-light);
}

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

.form-intro h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    color: var(--text-light);
}

.contact-form {
    background: var(--background-white);
    padding: 48px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

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

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

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

.final-cta {
    padding: 80px 24px;
    background: var(--primary-color);
    text-align: center;
}

.final-cta h2 {
    font-size: 40px;
    color: var(--background-white);
    margin-bottom: 16px;
    font-weight: 700;
}

.final-cta p {
    font-size: 18px;
    color: var(--background-white);
    margin-bottom: 32px;
    opacity: 0.95;
}

.footer {
    background: var(--text-dark);
    color: var(--background-white);
    padding: 60px 24px 24px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

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

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

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

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

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

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

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

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

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

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

.btn-sticky:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--background-white);
    padding: 24px;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-buttons button {
    padding: 12px 24px;
    font-size: 14px;
}

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.lead {
    font-size: 20px;
    opacity: 0.95;
}

.values-section {
    padding: 80px 24px;
    background: var(--background-white);
}

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 56px;
    color: var(--text-dark);
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.value-card {
    flex: 1 1 100%;
    max-width: 520px;
    padding: 32px;
    background: var(--background-light);
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

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

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

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.stat-card {
    flex: 1 1 200px;
    text-align: center;
}

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

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

.approach-section {
    padding: 80px 24px;
    background: var(--background-white);
}

.approach-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-dark);
    font-weight: 700;
}

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

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

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.services-detail {
    padding: 60px 24px;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

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

.service-detail-image {
    flex: 1;
    min-height: 320px;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-detail-content h4 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.price-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--background-white);
    font-size: 22px;
    font-weight: 700;
    border-radius: 6px;
    margin-bottom: 24px;
}

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

.service-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-light);
}

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

.pricing-info {
    padding: 60px 24px;
    background: var(--background-light);
}

.pricing-info h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
    text-align: center;
}

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

.info-list {
    list-style: none;
    margin: 24px 0;
}

.info-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-light);
}

.info-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.contact-content {
    padding: 60px 24px;
}

.contact-split {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-info {
    flex: 1 1 100%;
    max-width: 600px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 700;
}

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

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

.contact-note p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

.map-section {
    padding: 60px 24px;
    background: var(--background-light);
}

.map-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--background-white);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-muted);
}

.map-overlay svg {
    margin: 0 auto 12px;
}

.map-overlay p {
    font-size: 16px;
}

.faq-section {
    padding: 60px 24px;
    background: var(--background-white);
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
    font-weight: 700;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

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

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

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

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

.thanks-icon {
    color: var(--primary-color);
    margin: 0 auto 32px;
    width: 80px;
    height: 80px;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.service-confirmation {
    margin: 32px 0;
}

.service-info {
    font-size: 16px;
    color: var(--text-light);
    padding: 16px;
    background: var(--background-white);
    border-radius: 6px;
    display: inline-block;
}

.thanks-next {
    margin: 48px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.next-steps {
    list-style: none;
    counter-reset: step-counter;
}

.next-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

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

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

.legal-page {
    padding: 60px 24px;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.update-date {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.legal-page ul {
    margin: 20px 0;
    padding-left: 24px;
}

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

@media (min-width: 640px) {
    .service-cards {
        gap: 28px;
    }

    .service-card {
        flex: 1 1 calc(50% - 14px);
    }

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

    .cookie-content p {
        flex: 1;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }
}

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

    .mobile-menu-toggle {
        display: none;
    }

    .hero-split {
        flex-direction: row;
        min-height: 700px;
    }

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

    .hero-text h1 {
        font-size: 52px;
    }

    .split-feature {
        flex-direction: row;
    }

    .split-feature.reverse {
        flex-direction: row-reverse;
    }

    .service-detail-card {
        flex-direction: row;
        gap: 60px;
    }

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

    .service-detail-image {
        min-height: 400px;
    }

    .contact-split {
        gap: 80px;
    }
}

@media (min-width: 1024px) {
    .service-card {
        flex: 1 1 calc(33.333% - 22px);
    }

    .hero-text h1 {
        font-size: 58px;
    }

    .intro-section h2,
    .section-header-center h2,
    .process-section h2,
    .testimonials-section h2,
    .form-intro h2,
    .final-cta h2,
    .values-section h2 {
        font-size: 44px;
    }
}

@media (max-width: 767px) {
    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--background-white);
        border-bottom: 1px solid var(--border-color);
        padding: 20px 24px;
        gap: 16px;
        box-shadow: var(--shadow-md);
    }
}