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

:root {
    --primary-color: #2d5016;
    --secondary-color: #6a9739;
    --accent-color: #a8c686;
    --dark-color: #1a2e0d;
    --light-color: #f4f7f1;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --border-color: #d4e2c8;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

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

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

.main-header {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

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

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

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

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

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    background-color: var(--light-color);
}

.hero-text-content {
    max-width: 600px;
}

.hero-text-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 1.8rem;
    font-weight: 800;
}

.hero-text-content p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.intro-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.intro-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-image-side {
    flex: 0 0 45%;
}

.intro-image-side img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.intro-text-side {
    flex: 1;
}

.intro-text-side h2 {
    font-size: 2.4rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-text-side p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: var(--text-dark);
}

.offset-statement {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
}

.statement-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.statement-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 10px;
    max-width: 700px;
    box-shadow: var(--shadow-lg);
}

.statement-card h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

.statement-card p {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.services-overview {
    padding: 6rem 2rem;
    background-color: var(--light-color);
}

.services-intro-text {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro-text h2 {
    font-size: 2.6rem;
    color: var(--dark-color);
    margin-bottom: 1.2rem;
}

.services-intro-text p {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-width: 320px;
}

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

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

.service-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-details h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-details p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

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

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

.proof-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.proof-split-reverse {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.proof-text {
    flex: 1;
    order: 1;
}

.proof-text h2 {
    font-size: 2.4rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.proof-text p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: var(--text-dark);
}

.proof-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-dark);
}

.proof-image {
    flex: 0 0 45%;
    order: 2;
}

.proof-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.testimonial-block {
    padding: 5rem 2rem;
    background: linear-gradient(to right, var(--accent-color), var(--secondary-color));
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.testimonial-item {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.testimonial-item cite {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    font-style: normal;
}

.process-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.process-header {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.process-header h2 {
    font-size: 2.6rem;
    color: var(--dark-color);
}

.process-steps {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.process-step {
    flex: 1 1 calc(50% - 1.5rem);
    padding: 2.5rem;
    background-color: var(--light-color);
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    min-width: 300px;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.commitment-section {
    padding: 6rem 2rem;
    background-color: var(--dark-color);
    color: var(--text-light);
}

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

.commitment-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.commitment-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.form-section {
    padding: 6rem 2rem;
    background-color: var(--light-color);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.4rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.inquiry-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--dark-color);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    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(--secondary-color);
}

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

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

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

.sticky-cta-button {
    display: block;
    padding: 1.2rem 2rem;
    background-color: var(--secondary-color);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
}

.main-footer {
    background-color: var(--dark-color);
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--accent-color);
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-light);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--accent-color);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

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

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

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

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.page-hero {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--text-light);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-detailed {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.service-detail-block {
    max-width: 1400px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.service-detail-left {
    flex: 0 0 48%;
}

.service-detail-left img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.service-detail-right {
    flex: 1;
}

.service-detail-right h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.price-display {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-detail-right p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.service-includes {
    list-style: none;
    margin: 2rem 0;
}

.service-includes li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.services-faq {
    padding: 5rem 2rem;
    background-color: var(--light-color);
}

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

.faq-container h2 {
    font-size: 2.4rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
    text-align: center;
}

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

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

.faq-item p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.about-hero {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.about-hero-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-hero-text {
    flex: 1;
}

.about-hero-text h1 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-hero-text p {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.about-hero-image {
    flex: 0 0 45%;
}

.about-hero-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.about-story {
    padding: 5rem 2rem;
    background-color: var(--light-color);
}

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

.story-content h2 {
    font-size: 2.4rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.values-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-card {
    flex: 1 1 calc(50% - 1.5rem);
    padding: 2.5rem;
    background-color: var(--light-color);
    border-radius: 10px;
    min-width: 300px;
}

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

.value-card p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.team-approach {
    padding: 6rem 2rem;
    background-color: var(--light-color);
}

.approach-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-image {
    flex: 0 0 45%;
}

.approach-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.4rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.approach-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.philosophy-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 2.6rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.philosophy-content p {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.commitment-block {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.commitment-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.commitment-card {
    background-color: #ffffff;
    padding: 3.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.commitment-card h3 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.commitment-card p {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-closing {
    padding: 6rem 2rem;
    background-color: var(--light-color);
    text-align: center;
}

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

.closing-content h2 {
    font-size: 2.6rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.closing-content p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-hero {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--text-light);
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
}

.contact-hero-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-main {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

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

.contact-info-side h2 {
    font-size: 2.4rem;
    color: var(--dark-color);
    margin-bottom: 2.5rem;
}

.contact-method {
    margin-bottom: 3rem;
}

.contact-method h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.contact-method p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-method a {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-map-side {
    flex: 0 0 45%;
}

.map-placeholder {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: #ffffff;
}

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

.contact-expectations {
    padding: 5rem 2rem;
    background-color: var(--light-color);
}

.expectations-content {
    max-width: 1200px;
    margin: 0 auto;
}

.expectations-content h2 {
    font-size: 2.4rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
    text-align: center;
}

.expectations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.expectation-item {
    flex: 1 1 calc(50% - 1.5rem);
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    min-width: 300px;
}

.expectation-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.expectation-item p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-faq {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-cta-section {
    padding: 6rem 2rem;
    background-color: var(--dark-color);
    color: var(--text-light);
    text-align: center;
}

.contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta-content h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
}

.contact-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.thanks-hero {
    padding: 6rem 2rem;
    background-color: var(--light-color);
}

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

.thanks-content h1 {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.thanks-content > p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.thanks-details {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
}

.thanks-details p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.next-steps {
    margin: 4rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 2.5rem;
    text-align: center;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    min-width: 250px;
}

.step .step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

.step p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-additional {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.additional-info {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.additional-info h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.additional-info > p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.additional-links {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.link-card {
    flex: 1;
    max-width: 400px;
    background-color: var(--light-color);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: left;
    transition: all 0.3s ease;
}

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

.link-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.link-card p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.legal-page {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.legal-updated {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin: 2.5rem 0 1.2rem;
}

.legal-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.legal-content p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-content ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.legal-content li {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

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

.legal-content a:hover {
    color: var(--primary-color);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

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

.cookies-table td {
    font-size: 0.95rem;
    color: var(--text-dark);
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

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

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

    .intro-split,
    .proof-split-reverse,
    .approach-split,
    .about-hero-split,
    .contact-split {
        flex-direction: column;
    }

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

    .intro-image-side,
    .proof-image,
    .approach-image,
    .about-hero-image,
    .service-detail-left,
    .contact-map-side {
        flex: 1 1 100%;
    }

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

    .process-steps,
    .values-grid,
    .expectations-grid {
        flex-direction: column;
    }

    .process-step,
    .value-card,
    .expectation-item {
        flex: 1 1 100%;
    }

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

    .service-card {
        flex: 1 1 100%;
    }
}

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

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

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

    .hero-text-content p {
        font-size: 1.05rem;
    }

    .page-hero-content h1,
    .contact-hero-content h1,
    .thanks-content h1 {
        font-size: 2.2rem;
    }

    .intro-text-side h2,
    .proof-text h2,
    .approach-text h2,
    .about-hero-text h1 {
        font-size: 1.8rem;
    }

    .services-intro-text h2,
    .process-header h2,
    .commitment-content h2 {
        font-size: 2rem;
    }

    .statement-card h3 {
        font-size: 1.6rem;
    }

    .proof-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

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

    .sticky-cta-button {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .step {
        flex: 1 1 100%;
    }

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

    .additional-links {
        flex-direction: column;
    }

    .link-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 1rem 1.5rem;
    }

    .hero-left {
        padding: 3rem 1.5rem;
    }

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

    .hero-text-content p {
        font-size: 1rem;
    }

    .intro-section,
    .services-overview,
    .proof-section,
    .process-section,
    .commitment-section,
    .form-section,
    .services-detailed,
    .about-hero,
    .contact-main {
        padding: 3rem 1.5rem;
    }

    .inquiry-form {
        padding: 2rem 1.5rem;
    }

    .statement-card {
        padding: 2rem;
    }

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