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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #7a9b3a;
    --accent-color: #c17817;
    --dark-color: #1a1a1a;
    --light-color: #f9f7f4;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    border-top: 3px solid var(--accent-color);
}

.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: 1.5rem;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

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

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

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

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

/* Navigation */
.navbar {
    background: #ffffff;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

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

/* Hero Split Section (Split-Screen Modern Archetype) */
.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: stretch;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left {
    padding: 4rem 6rem;
    background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
}

.hero-left h1 {
    font-size: 3.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

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

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

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.cta-primary,
.btn-primary {
    background: var(--primary-color);
    color: #ffffff;
}

.cta-primary:hover,
.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 95, 45, 0.3);
}

.cta-secondary,
.btn-secondary {
    background: var(--accent-color);
    color: #ffffff;
}

.cta-secondary:hover,
.btn-secondary:hover {
    background: #a0650f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(193, 120, 23, 0.3);
}

/* Split Section Pattern (Core of Split-Screen Archetype) */
.split-section {
    display: flex;
    align-items: center;
    min-height: 70vh;
}

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

.split-content,
.split-image {
    flex: 1;
}

.split-content {
    padding: 4rem 6rem;
}

.split-content h2 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.split-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.split-image {
    position: relative;
    height: 70vh;
}

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

.feature-list {
    margin: 2rem 0;
}

.feature-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
}

.feature-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Services Section */
.services-preview {
    padding: 6rem 2rem;
    background: var(--light-color);
}

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

.section-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

.service-card p {
    color: var(--text-light);
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

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

.select-service {
    padding: 0.875rem 1.75rem;
    background: var(--light-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Testimonial Section */
.testimonial-section {
    padding: 6rem 2rem;
    background: var(--primary-color);
    color: #ffffff;
}

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

.testimonial-container blockquote {
    font-size: 1.5rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-container cite {
    font-size: 1.1rem;
    font-style: normal;
    opacity: 0.9;
}

/* Process Split Section */
.process-split {
    display: flex;
    align-items: stretch;
}

.process-text,
.process-image {
    flex: 1;
}

.process-text {
    padding: 5rem 6rem;
    background: #ffffff;
}

.process-text h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.process-image {
    position: relative;
}

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

/* CTA Banner */
.cta-banner {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

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

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

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

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

.contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 95, 45, 0.3);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-section a:hover {
    color: #ffffff;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(193, 120, 23, 0.4);
    transition: var(--transition);
}

.sticky-cta a:hover {
    background: #a0650f;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(193, 120, 23, 0.5);
}

/* Page Hero (for internal pages) */
.page-hero {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
    text-align: center;
}

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

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

.page-hero p {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* About Page Styles */
.about-split {
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

.about-content {
    flex: 1;
    padding: 0 6rem;
}

.about-image {
    flex: 1;
    height: 500px;
}

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

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

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--dark-color);
}

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

.value-card {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 300px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
}

/* Team Section */
.team-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--dark-color);
}

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

.team-member {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 300px;
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    background: var(--light-color);
}

.member-info h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.member-role {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info p {
    color: var(--text-light);
}

/* Stats Section */
.stats-section {
    padding: 6rem 2rem;
    background: var(--primary-color);
    color: #ffffff;
}

.stats-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #ffffff;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.stat-card {
    flex: 1 1 calc(25% - 3rem);
    min-width: 200px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

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

/* Approach Section */
.approach-section {
    padding: 6rem 2rem;
    background: var(--light-color);
}

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

.approach-content h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.approach-content > p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.approach-points {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.approach-item {
    padding: 2rem;
    background: #ffffff;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.approach-item h4 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.approach-item p {
    color: var(--text-light);
}

/* Services Detail Page */
.services-detail-section {
    padding: 4rem 2rem;
}

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

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

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

.service-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--accent-color);
    color: #ffffff;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-detail-content h2 {
    font-size: 2.25rem;
    color: var(--dark-color);
    margin-bottom: 1.25rem;
}

.service-detail-content > p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.service-features li {
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--text-light);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-pricing {
    margin: 2rem 0;
}

.price-large {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-note {
    display: block;
    color: var(--text-light);
    font-size: 0.95rem;
}

.btn-service {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition);
}

.btn-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 95, 45, 0.3);
}

.service-detail-image {
    flex: 1;
    height: 450px;
}

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

/* Comparison Section */
.comparison-section {
    padding: 6rem 2rem;
    background: var(--light-color);
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--dark-color);
}

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

.comparison-card {
    flex: 1 1 calc(33.333% - 2.5rem);
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.comparison-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.comparison-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.comparison-price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--dark-color);
}

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

.faq-item {
    padding: 2rem;
    background: var(--light-color);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.faq-item h4 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Contact Page Styles */
.contact-hero {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 2.75rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

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

.contact-info h2 {
    font-size: 2.25rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.info-block {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.info-block:last-child {
    border-bottom: none;
}

.info-block h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.info-block p {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.8;
}

.info-block a {
    color: var(--primary-color);
    font-weight: 600;
}

.info-note {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Process Timeline */
.contact-process {
    padding: 5rem 2rem;
    background: var(--light-color);
}

.contact-process h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 4rem;
    color: var(--dark-color);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
}

/* Location Section */
.location-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.location-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.location-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.location-text {
    flex: 1;
}

.location-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.location-map {
    flex: 1;
}

.map-placeholder {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    border: 2px dashed var(--border-color);
}

.map-placeholder p {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.map-placeholder span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

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

/* Thanks Page */
.thanks-section {
    padding: 6rem 2rem;
    background: var(--light-color);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.thanks-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.thanks-info p {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.thanks-next {
    margin-bottom: 3rem;
}

.thanks-next h3 {
    color: var(--dark-color);
    margin-bottom: 2rem;
}

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

.next-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
}

.step-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.next-step p {
    color: var(--text-light);
    margin: 0;
}

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

.thanks-extra {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.thanks-extra h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.thanks-extra p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.link-text {
    color: var(--primary-color);
    font-weight: 600;
}

.link-text:hover {
    color: var(--accent-color);
}

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem;
    background: #ffffff;
}

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

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

.legal-update {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.legal-container h2 {
    font-size: 1.75rem;
    color: var(--dark-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-container h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container h4 {
    font-size: 1.15rem;
    color: var(--dark-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container ul li {
    list-style: disc;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.legal-container ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container ol li {
    list-style: decimal;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

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

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

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

.cookies-table thead {
    background: var(--light-color);
}

.cookies-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--dark-color);
    border-bottom: 2px solid var(--border-color);
}

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

.cookies-table tbody tr:hover {
    background: var(--light-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .split-section,
    .process-split,
    .about-split,
    .service-detail {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .hero-left,
    .split-content,
    .process-text {
        padding: 3rem 2rem;
    }

    .split-image,
    .process-image,
    .about-image {
        height: 400px;
    }

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

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .nav-menu {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

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

    .values-grid,
    .team-grid,
    .comparison-grid {
        flex-direction: column;
    }

    .value-card,
    .team-member,
    .comparison-card {
        flex: 1 1 100%;
    }

    .stats-grid {
        flex-direction: column;
        gap: 2rem;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta a {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-actions {
        width: 100%;
        justify-content: space-between;
    }
}

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

    .nav-menu {
        display: none;
    }

    .hero-left,
    .split-content {
        padding: 2rem 1.5rem;
    }

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

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

    .cta-primary,
    .cta-secondary {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }

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

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