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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2d2d2d;
    background: #ffffff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Container Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
}

.cookie-content a {
    color: #ffd700;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #ffd700;
    color: #1a1a1a;
}

.btn-accept:hover {
    background: #ffed4e;
}

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

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #2d2d2d;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

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

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

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: #2d2d2d;
}

/* Hero Split Screen */
.hero-split {
    display: flex;
    min-height: 85vh;
}

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

.hero-left {
    background: #f8f8f8;
    display: flex;
    align-items: center;
    padding: 60px 50px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 1.15rem;
    color: #555555;
    margin-bottom: 35px;
    max-width: 500px;
}

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

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.cta-outline {
    display: inline-block;
    padding: 16px 35px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-primary {
    background: #1a1a1a;
    color: #ffffff;
}

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

.cta-secondary {
    background: #ffd700;
    color: #1a1a1a;
}

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

.cta-outline {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.cta-outline:hover {
    background: #1a1a1a;
    color: #ffffff;
}

/* Trust Bar */
.trust-bar {
    background: #1a1a1a;
    padding: 40px 0;
}

.trust-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    flex: 1;
    min-width: 150px;
}

.trust-icon {
    font-size: 2rem;
}

.trust-item p {
    font-weight: 500;
    text-align: center;
}

/* Split Sections */
.intro-split,
.process-split,
.story-split,
.team-split,
.sustainability-split,
.contact-split {
    display: flex;
    align-items: center;
}

.intro-split,
.story-split,
.sustainability-split {
    min-height: 70vh;
}

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

.split-content {
    padding: 80px 60px;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.3;
}

.split-content p {
    font-size: 1.05rem;
    color: #555555;
    margin-bottom: 20px;
}

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

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

.link-arrow {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-block;
    margin-top: 15px;
}

.link-arrow:hover {
    color: #ffd700;
}

/* Services Preview */
.services-preview {
    padding: 100px 0;
    background: #f8f8f8;
}

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

.section-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 1.1rem;
    color: #666666;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    color: #666666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-link {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

.service-link:hover {
    color: #ffd700;
}

.cta-center {
    text-align: center;
}

/* Process Steps */
.process-split {
    padding: 80px 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    min-width: 50px;
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step p {
    color: #666666;
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background: #f8f8f8;
    padding: 35px 30px;
    border-radius: 8px;
    border-left: 4px solid #ffd700;
}

.testimonial p {
    font-size: 1rem;
    color: #2d2d2d;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.9rem;
}

/* CTA Split Full */
.cta-split-full {
    display: flex;
    min-height: 600px;
}

.cta-left-side,
.cta-right-side {
    flex: 1;
}

.cta-left-side {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-left-side h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-left-side p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefits-list li {
    font-size: 1rem;
    color: #e0e0e0;
}

.cta-right-side {
    background: #f8f8f8;
    padding: 80px 60px;
    display: flex;
    align-items: center;
}

/* Contact Form */
.contact-form {
    width: 100%;
    max-width: 500px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #1a1a1a;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #333333;
}

.form-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #666666;
    text-align: center;
}

.form-note a {
    color: #1a1a1a;
    text-decoration: underline;
}

/* Why Us Section */
.why-us-section {
    padding: 100px 0;
    background: #ffffff;
}

.why-us-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.reasons-split {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.reason-item {
    display: flex;
    gap: 40px;
    align-items: center;
}

.reason-item img {
    width: 45%;
    border-radius: 8px;
}

.reason-content {
    flex: 1;
}

.reason-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.reason-content p {
    font-size: 1.05rem;
    color: #666666;
}

.reason-item.reverse {
    flex-direction: row-reverse;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: #f8f8f8;
}

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

.final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.final-cta-content p {
    font-size: 1.15rem;
    color: #666666;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

.footer-col p {
    color: #d0d0d0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    color: #d0d0d0;
    font-size: 0.9rem;
}

.footer-col ul a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 25px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

.footer-bottom p {
    color: #999999;
    font-size: 0.85rem;
}

/* Page Header */
.page-header {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: #d0d0d0;
}

/* Services Detailed */
.services-detailed {
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    margin-bottom: 80px;
    align-items: center;
    gap: 50px;
}

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

.service-detail-left img {
    border-radius: 8px;
}

.service-icon-large {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.service-detail-right h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-right p {
    font-size: 1.05rem;
    color: #666666;
    margin-bottom: 25px;
}

.service-features {
    margin-bottom: 30px;
}

.service-features li {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: 700;
}

.pricing-block {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.price-main {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.price-note {
    font-size: 0.9rem;
    color: #666666;
    margin: 0;
}

/* Pricing Info */
.pricing-info {
    background: #f8f8f8;
    padding: 80px 0;
}

.pricing-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.pricing-factors {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.factor {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
}

.factor h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.factor p {
    font-size: 0.95rem;
    color: #666666;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 0.95rem;
    color: #666666;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 0.95rem;
    color: #666666;
}

/* Approach Section */
.approach-section {
    padding: 100px 0;
    background: #ffffff;
}

.approach-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.approach-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.approach-block {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 35px 30px;
    background: #f8f8f8;
    border-radius: 8px;
}

.approach-block h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.approach-block p {
    font-size: 0.95rem;
    color: #666666;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: #ffffff;
}

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

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #d0d0d0;
}

/* Contact Split */
.contact-split {
    padding: 80px 0;
}

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

.contact-info-side {
    padding: 0 60px;
}

.contact-block {
    margin-bottom: 50px;
}

.contact-block h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-block h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-icon {
    font-size: 1.8rem;
    min-width: 40px;
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.info-content p {
    color: #666666;
    font-size: 0.95rem;
}

.info-content .note {
    font-size: 0.85rem;
    font-style: italic;
    color: #999999;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.hour-item .day {
    font-weight: 600;
    color: #1a1a1a;
}

.hour-item .time {
    color: #666666;
}

.hours-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #999999;
    font-style: italic;
}

.transport-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.transport-item {
    font-size: 0.95rem;
    color: #666666;
}

.transport-item strong {
    color: #1a1a1a;
}

.map-placeholder {
    position: relative;
    height: 100%;
    min-height: 600px;
}

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

.map-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(26, 26, 26, 0.9);
    color: #ffffff;
    padding: 20px 30px;
    border-radius: 6px;
}

.map-overlay p {
    margin: 0;
    font-size: 1rem;
}

/* Contact CTA Section */
.contact-cta-section {
    background: #f8f8f8;
    padding: 80px 0;
}

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

.contact-cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-cta-content p {
    font-size: 1.05rem;
    color: #666666;
    margin-bottom: 30px;
}

/* FAQ Contact */
.faq-contact {
    padding: 80px 0;
}

.faq-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a1a;
}

/* Final Note */
.final-note {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0;
}

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

.note-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.note-content p {
    font-size: 1.05rem;
    color: #d0d0d0;
}

/* Thanks Page */
.thanks-hero {
    padding: 100px 0;
    background: #f8f8f8;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #4caf50;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 50px;
}

.thanks-info {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.next-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.next-step .step-number {
    background: #ffd700;
    color: #1a1a1a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.next-step p {
    font-size: 1rem;
    color: #555555;
}

.selected-service {
    background: #ffffff;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 30px;
    font-size: 1rem;
    color: #555555;
}

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

.contact-reminder {
    background: #ffffff;
    padding: 25px;
    border-radius: 6px;
}

.contact-reminder p {
    margin-bottom: 5px;
    font-size: 0.95rem;
    color: #555555;
}

.contact-reminder a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 60px 0 100px;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.updated {
    font-size: 0.9rem;
    color: #999999;
    margin-bottom: 40px;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.legal-content p {
    margin-bottom: 15px;
    color: #555555;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    color: #555555;
    list-style: disc;
}

.legal-content a {
    color: #1a1a1a;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #ffd700;
}

.legal-content strong {
    color: #1a1a1a;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: #ffffff;
}

.gdpr-table thead,
.cookies-table thead {
    background: #f8f8f8;
}

.gdpr-table th,
.cookies-table th,
.gdpr-table td,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.gdpr-table th,
.cookies-table th {
    font-weight: 600;
    color: #1a1a1a;
}

.gdpr-table td,
.cookies-table td {
    color: #555555;
}

.cookie-controls {
    margin: 30px 0;
    text-align: center;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.back-link {
    color: #1a1a1a;
    font-weight: 600;
}

.back-link:hover {
    color: #ffd700;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-split,
    .intro-split,
    .process-split,
    .story-split,
    .team-split,
    .sustainability-split,
    .contact-split,
    .cta-split-full,
    .service-detail-card {
        flex-direction: column;
    }

    .hero-left,
    .split-content,
    .cta-left-side,
    .cta-right-side,
    .contact-info-side {
        padding: 60px 30px;
    }

    .split-image img,
    .map-placeholder {
        min-height: 400px;
    }

    .reason-item,
    .reason-item.reverse {
        flex-direction: column;
    }

    .reason-item img {
        width: 100%;
    }

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

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

    .split-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 25px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-toggle {
        display: block;
    }

    .service-card,
    .value-card,
    .factor,
    .approach-block,
    .faq-item,
    .testimonial {
        flex: 1 1 100%;
    }

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

    .split-content h2,
    .section-header-center h2 {
        font-size: 1.8rem;
    }

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

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}