/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #229954;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

/* Navigation - Floating Style */
.nav-floating {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d7a3e;
}

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    position: relative;
}

.nav-links a:hover {
    color: #2d7a3e;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2d7a3e;
    transition: width 0.3s ease;
}

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

/* Hero - Asymmetric Layout */
.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #f8f9fa;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
}

.hero-text-block {
    max-width: 520px;
    margin-left: 8%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.hero-text-block h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-text-block p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    height: 85%;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    border-radius: 8px 0 0 8px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d7a3e;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #236b32;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 122, 62, 0.3);
}

/* Intro Section - Offset */
.intro-offset {
    max-width: 1300px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-narrow {
    flex: 1;
    padding-top: 3rem;
}

.intro-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-narrow p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a6c7d;
}

.intro-image-side {
    flex: 1;
    max-width: 500px;
    margin-left: -2rem;
}

.intro-image-side img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Services - Stacked Cards with Irregular Offsets */
.services-stacked {
    background-color: #f8f9fa;
    padding: 6rem 2rem;
}

.section-header-left {
    max-width: 1300px;
    margin: 0 auto 4rem;
    padding-left: 12%;
}

.section-header-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-header-left p {
    font-size: 1.1rem;
    color: #5a6c7d;
    max-width: 600px;
}

.services-cards-irregular {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: calc(50% - 1.5rem);
    min-width: 300px;
    max-width: 450px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.card-offset-1 {
    margin-top: 0;
}

.card-offset-2 {
    margin-top: 3rem;
}

.card-offset-3 {
    margin-top: 1.5rem;
}

.card-offset-4 {
    margin-top: 4rem;
}

.service-card img {
    width: 100%;
    height: 240px;
    background-color: #ecf0f1;
}

.service-card h3 {
    font-size: 1.6rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c3e50;
}

.service-card p {
    margin: 0 1.5rem 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d7a3e;
    margin: 1.5rem 1.5rem 1rem;
}

.btn-select-service {
    display: block;
    width: calc(100% - 3rem);
    margin: 1rem 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: #2d7a3e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #236b32;
    transform: translateY(-2px);
}

/* Benefits Split */
.benefits-split {
    max-width: 1300px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.benefits-left {
    flex: 1;
}

.benefits-left h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d7a3e;
    font-weight: 700;
    font-size: 1.3rem;
}

.benefits-right {
    flex: 1;
    max-width: 550px;
}

.benefits-right img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Process Vertical with Offset Steps */
.process-vertical {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 6rem 2rem;
}

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

.process-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.process-steps-offset {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    padding: 2.5rem;
    margin-bottom: 2rem;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    position: relative;
}

.step-left {
    margin-left: 0;
    margin-right: 15%;
}

.step-right {
    margin-left: 15%;
    margin-right: 0;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2d7a3e;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.step-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.step-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Form Section - Asymmetric */
.form-section-asymmetric {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.form-container-offset {
    max-width: 650px;
    margin-left: 20%;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-container-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-intro {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #dce1e6;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d7a3e;
    box-shadow: 0 0 0 3px rgba(45, 122, 62, 0.1);
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #2d7a3e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #236b32;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 122, 62, 0.3);
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #ecf0f1;
    padding: 3rem 2rem;
}

.disclaimer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #5a6c7d;
    text-align: center;
    font-style: italic;
}

/* Footer - Offset Style */
.footer-offset {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.footer-col-1 {
    flex: 1.5;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1.5rem;
    color: #2d7a3e;
}

.footer-column p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-column a {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    color: #2d7a3e;
    padding-left: 5px;
}

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

/* About Page Styles */
.about-hero-offset {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-hero-text {
    flex: 1;
    padding-left: 5%;
}

.about-hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-hero-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #5a6c7d;
}

.about-hero-image {
    flex: 1;
    max-width: 600px;
}

.about-hero-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-story {
    background-color: #f8f9fa;
    padding: 6rem 2rem;
}

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

.story-content-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.story-content-narrow p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
}

.about-values-asymmetric {
    max-width: 1100px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.values-block {
    padding: 2.5rem;
    margin-bottom: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2d7a3e;
}

.values-left {
    margin-right: 20%;
}

.values-right {
    margin-left: 20%;
}

.values-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.values-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.about-approach {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 6rem 2rem;
}

.approach-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: center;
}

.approach-header h2 {
    font-size: 2.5rem;
}

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

.approach-text {
    flex: 1;
}

.approach-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.approach-image {
    flex: 1;
    max-width: 500px;
}

.approach-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.about-cta-section {
    padding: 6rem 2rem;
}

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

.cta-content-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.cta-content-center p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #5a6c7d;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background-color: #2d7a3e;
    color: #ffffff;
}

.btn-cta-primary:hover {
    background-color: #236b32;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 122, 62, 0.3);
}

.btn-cta-secondary {
    background-color: transparent;
    color: #2d7a3e;
    border: 2px solid #2d7a3e;
}

.btn-cta-secondary:hover {
    background-color: #2d7a3e;
    color: #ffffff;
}

/* Services Page Styles */
.services-hero {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    text-align: center;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.services-hero-content p {
    font-size: 1.15rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.services-detail-section {
    max-width: 1300px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.service-detail-item {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.service-layout-left .service-detail-image {
    order: 1;
}

.service-layout-left .service-detail-content {
    order: 2;
}

.service-layout-right .service-detail-content {
    order: 1;
}

.service-layout-right .service-detail-image {
    order: 2;
}

.service-detail-image {
    flex: 1;
    max-width: 550px;
}

.service-detail-image img {
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d7a3e;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: #5a6c7d;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2d7a3e;
    font-weight: 700;
    font-size: 1.5rem;
}

.service-duration {
    font-size: 0.95rem;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 1.5rem;
}

.services-form-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.services-form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.services-form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-form-container p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

/* Contact Page Styles */
.contact-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

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

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

.contact-hero-content p {
    font-size: 1.15rem;
    opacity: 0.9;
}

.contact-info-section {
    max-width: 1300px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.contact-info-layout {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #2d7a3e;
}

.contact-detail p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #2d7a3e;
    border-radius: 4px;
}

.contact-note p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin: 0;
}

.contact-image-block {
    flex: 1;
    max-width: 550px;
}

.contact-image-block img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.contact-location-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.location-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.location-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.location-directions {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.direction-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.direction-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2d7a3e;
}

.direction-item p {
    font-size: 1rem;
    color: #5a6c7d;
}

.contact-faq-section {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.faq-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    text-align: center;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2d7a3e;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a6c7d;
}

/* Thanks Page Styles */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-info h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.thanks-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number-small {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #2d7a3e;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.thanks-step p {
    flex: 1;
    padding-top: 0.5rem;
    font-size: 1.05rem;
    color: #5a6c7d;
}

.thanks-service-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #e8f5e9;
    border-radius: 6px;
    font-weight: 600;
    color: #2d7a3e;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2d7a3e;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #236b32;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #2d7a3e;
    border: 2px solid #2d7a3e;
}

.btn-secondary:hover {
    background-color: #2d7a3e;
    color: #ffffff;
}

.thanks-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #dce1e6;
}

.thanks-contact p {
    font-size: 0.95rem;
    color: #5a6c7d;
}

/* Legal Pages Styles */
.legal-page-content {
    padding: 5rem 2rem;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.legal-intro {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2d7a3e;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.legal-container ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        transform: none;
    }

    .hero-text-block {
        margin-left: 0;
    }

    .intro-offset,
    .benefits-split,
    .approach-content-split,
    .contact-info-layout {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
        max-width: 500px;
        margin-top: 0 !important;
    }

    .section-header-left {
        padding-left: 0;
    }

    .form-container-offset {
        margin-left: 0;
    }

    .values-left,
    .values-right {
        margin-left: 0;
        margin-right: 0;
    }

    .service-detail-item {
        flex-direction: column;
    }

    .service-layout-left .service-detail-image,
    .service-layout-right .service-detail-image {
        order: 1;
    }

    .service-layout-left .service-detail-content,
    .service-layout-right .service-detail-content {
        order: 2;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

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

    .intro-narrow h2,
    .benefits-left h2,
    .process-header-center h2,
    .about-hero-text h1 {
        font-size: 1.8rem;
    }

    .step-left,
    .step-right {
        margin-left: 0;
        margin-right: 0;
    }

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

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

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
    }

    .about-hero-offset {
        flex-direction: column;
    }

    .about-hero-text {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .hero-text-block {
        padding: 2rem;
    }

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

    .thanks-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}