/* 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, Oxygen, Ubuntu, Cantarell, 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;
}

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: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.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;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background: #7f8c8d;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

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

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #3498db;
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #3498db;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 600px;
}

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

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: #f8f9fa;
}

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

.hero-text-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-text-content .lead {
    font-size: 1.4rem;
    color: #3498db;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-text-content p {
    margin-bottom: 30px;
    color: #555;
    font-size: 1.05rem;
}

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

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

/* Buttons */
.cta-primary,
.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #3498db;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover,
.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: #2c3e50;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.btn-white {
    display: inline-block;
    padding: 16px 36px;
    background: #ffffff;
    color: #2c3e50;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.link-arrow {
    color: #3498db;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.link-arrow::after {
    content: ' →';
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.link-arrow:hover::after {
    margin-left: 10px;
}

/* Trust Indicators */
.trust-indicators {
    padding: 60px 0;
    background: #ffffff;
}

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

.indicator {
    text-align: center;
}

.indicator-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.indicator-label {
    display: block;
    color: #555;
    font-size: 1rem;
}

/* Split Sections */
.about-split {
    display: flex;
    min-height: 500px;
}

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

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

.split-left {
    position: relative;
    overflow: hidden;
}

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

.split-right {
    display: flex;
    align-items: center;
    padding: 60px 50px;
    background: #f8f9fa;
}

.content-wrapper {
    max-width: 550px;
}

.content-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-wrapper p {
    margin-bottom: 25px;
    color: #555;
    font-size: 1.05rem;
}

.feature-list {
    margin: 30px 0;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Services Showcase */
.services-showcase {
    padding: 80px 0;
    background: #ffffff;
}

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

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 1.15rem;
    color: #555;
}

.services-split-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card-split {
    display: flex;
    min-height: 400px;
}

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

.service-visual,
.service-info {
    flex: 1;
}

.service-visual {
    position: relative;
    overflow: hidden;
}

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

.service-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    background: #f8f9fa;
}

.service-card-split:nth-child(even) .service-info {
    background: #ecf0f1;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-info p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

.btn-select-service {
    padding: 14px 30px;
    background: #3498db;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.cta-center {
    text-align: center;
    margin-top: 60px;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: #2c3e50;
    color: #ffffff;
}

.centered-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffffff;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #3498db;
}

/* Process Split */
.process-split {
    display: flex;
}

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

.split-left-content {
    padding: 80px 50px;
    background: #f8f9fa;
}

.split-left-content h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.process-step {
    display: flex;
    gap: 25px;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3498db;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50%;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.process-step p {
    color: #555;
    line-height: 1.6;
}

.split-right-image {
    position: relative;
    overflow: hidden;
}

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

/* Form Section */
.cta-form-section {
    padding: 80px 0;
    background: #ecf0f1;
}

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

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 1.1rem;
    color: #555;
}

.main-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    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: #3498db;
}

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

.btn-submit:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Final CTA Split */
.final-cta-split {
    display: flex;
    min-height: 400px;
}

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

.final-cta-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    background: #3498db;
    color: #ffffff;
}

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

.final-cta-left p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.final-cta-right {
    position: relative;
    overflow: hidden;
}

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

/* Footer */
.main-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 0 30px;
}

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

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

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

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

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

/* Page Hero */
.page-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #ffffff;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

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

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-split {
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

.service-detail-content {
    padding: 50px;
}

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

.service-detail-content > p {
    margin-bottom: 25px;
    color: #555;
    font-size: 1.05rem;
}

.service-features {
    margin: 25px 0;
    padding-left: 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

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

.pricing-table {
    margin: 30px 0;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 6px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row .price {
    font-weight: 700;
    color: #27ae60;
}

.service-detail-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

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

/* Additional Info */
.additional-info {
    padding: 60px 0;
    background: #f8f9fa;
}

.additional-info h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.info-card p {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* About Page Styles */
.about-story-split {
    display: flex;
}

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

.split-content-left {
    padding: 80px 50px;
    background: #ffffff;
}

.split-content-left h2,
.split-content-right h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.split-content-left p,
.split-content-right p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

.split-image-right,
.split-image-left {
    position: relative;
    overflow: hidden;
}

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

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

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

.value-card {
    flex: 1;
    min-width: 260px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #3498db;
}

.value-card p {
    color: #555;
    line-height: 1.6;
}

/* Team Split */
.team-split {
    display: flex;
}

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

.split-content-right {
    padding: 80px 50px;
    background: #ffffff;
}

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

.approach-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.approach-block h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.approach-block p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Stats Visual */
.stats-visual {
    padding: 80px 0;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #ffffff;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

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

/* Workspace Split */
.workspace-split {
    display: flex;
}

/* Sustainability Section */
.sustainability-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.sustainability-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.sustainability-split {
    display: flex;
    gap: 50px;
    align-items: center;
}

.sustainability-text {
    flex: 1;
}

.sustainability-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

.sustainability-image {
    flex: 1;
}

.sustainability-image img {
    border-radius: 8px;
}

/* CTA Simple */
.cta-simple {
    padding: 100px 0;
    background: #ecf0f1;
}

.cta-simple h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-simple p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 30px;
}

/* Contact Page */
.contact-split-main {
    display: flex;
    min-height: 600px;
}

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

.contact-info-side {
    padding: 60px 50px;
    background: #f8f9fa;
}

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

.contact-block h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-detail {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact-detail a {
    color: #3498db;
}

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

.contact-note {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid #ddd;
}

.hours-table td {
    padding: 12px 0;
    color: #555;
}

.hours-table td:first-child {
    font-weight: 600;
    color: #2c3e50;
}

.hours-table td:last-child {
    text-align: right;
}

.contact-map-side {
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.9);
    color: #ffffff;
    padding: 30px;
}

.map-overlay p {
    margin: 0;
    line-height: 1.6;
}

/* Contact Additional Info */
.contact-additional-info {
    padding: 60px 0;
    background: #ffffff;
}

.contact-additional-info h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.direction-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
}

.direction-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #3498db;
}

.direction-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Contact FAQ */
.contact-faq {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-faq h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.faq-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.faq-item p {
    color: #555;
    line-height: 1.7;
}

/* Contact CTA Bottom */
.contact-cta-bottom {
    padding: 80px 0;
    background: #3498db;
    color: #ffffff;
}

.contact-cta-bottom h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-cta-bottom p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Thanks Page */
.thanks-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.thanks-lead {
    font-size: 1.3rem;
    opacity: 0.95;
}

.thanks-details {
    padding: 80px 0;
    background: #f8f9fa;
}

.thanks-content h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

.next-steps {
    max-width: 700px;
    margin: 0 auto 50px;
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.step-num {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3498db;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50%;
}

.step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-text p {
    color: #555;
    line-height: 1.6;
}

.selected-service-info {
    background: #ffffff;
    padding: 25px;
    border-radius: 6px;
    margin: 30px auto;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.thanks-note {
    background: #e8f5e9;
    padding: 25px;
    border-radius: 6px;
    border-left: 4px solid #27ae60;
    margin-top: 40px;
}

.thanks-note p {
    margin: 0;
    color: #555;
}

.thanks-explore {
    padding: 60px 0;
    background: #ffffff;
}

.thanks-explore h2 {
    margin-bottom: 50px;
}

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

.explore-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
}

.explore-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.explore-card p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.thanks-back {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Legal Pages */
.page-hero-legal {
    padding: 60px 0;
    background: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.page-hero-legal h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.updated {
    font-size: 0.95rem;
    opacity: 0.8;
}

.legal-content {
    padding: 60px 0;
    background: #ffffff;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

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

.legal-content ul li {
    list-style: disc;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content a {
    color: #3498db;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table thead {
    background: #f8f9fa;
}

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

.cookies-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    color: #555;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-split,
    .about-split,
    .service-card-split,
    .process-split,
    .final-cta-split,
    .about-story-split,
    .team-split,
    .workspace-split,
    .contact-split-main,
    .service-detail-split {
        flex-direction: column;
    }

    .about-split.reverse,
    .service-card-split.reverse,
    .team-split.reverse {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .split-left,
    .split-right,
    .service-visual,
    .service-info,
    .split-left-content,
    .split-right-image,
    .final-cta-left,
    .final-cta-right,
    .split-content-left,
    .split-image-right,
    .split-content-right,
    .split-image-left,
    .contact-info-side,
    .contact-map-side,
    .service-detail-content,
    .service-detail-image {
        min-height: 400px;
    }

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

    .sustainability-split {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        gap: 0;
        padding: 20px 0;
    }

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

    .nav-menu li {
        padding: 15px 0;
    }

    .hamburger {
        display: flex;
    }

    .testimonials-grid,
    .indicators-grid,
    .values-grid,
    .info-grid,
    .directions-grid,
    .explore-grid {
        flex-direction: column;
    }

    .hero-text-content h1,
    .section-header-center h2,
    .centered-title,
    .split-content-left h2,
    .split-content-right h2 {
        font-size: 2rem;
    }

    .split-left-content,
    .split-right,
    .service-info,
    .split-content-left,
    .split-content-right,
    .contact-info-side,
    .service-detail-content,
    .main-form {
        padding: 40px 30px;
    }

    .stats-flex {
        flex-direction: column;
        gap: 30px;
    }

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

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

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

    .service-info,
    .split-left-content,
    .split-content-left,
    .split-content-right,
    .main-form {
        padding: 30px 20px;
    }

    .btn-accept,
    .btn-reject {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .cookie-content {
        font-size: 0.85rem;
    }
}