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

:root {
    --primary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    display: none;
    z-index: 9999;
}

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

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

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

.btn-accept {
    background: var(--success-color);
    color: white;
}

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

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

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

/* Navigation */
.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

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

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

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem;
    background: var(--bg-light);
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

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

/* CTA Buttons */
.cta-primary, .cta-secondary, .cta-primary-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.cta-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.cta-inline {
    color: var(--accent-color);
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: #c0392b;
    border-color: #c0392b;
}

/* Intro Split Section */
.intro-split {
    display: flex;
}

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

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

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

.intro-content {
    padding: 5rem 4rem;
}

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

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

/* Problem Section */
.problem-section {
    background: var(--bg-light);
    padding: 6rem 2rem;
}

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

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

.problem-left h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.problem-list li {
    padding-left: 1.5rem;
    border-left: 4px solid var(--accent-color);
}

.problem-list strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.problem-list span {
    color: var(--text-light);
    font-size: 1.05rem;
}

.quote-card {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.quote-card cite {
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

/* Insight Split Section */
.insight-split {
    display: flex;
}

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

.insight-content {
    padding: 5rem 4rem;
    background: var(--primary-color);
    color: white;
}

.label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.insight-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.insight-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
}

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

.stat-item strong {
    display: block;
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-item span {
    display: block;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

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

/* Services Section */
.services-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

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

.services-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

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

.service-card {
    flex: 0 1 calc(50% - 1rem);
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

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

.service-card.featured {
    border: 2px solid var(--accent-color);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 2rem;
}

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

.service-info > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

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

.service-price {
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}

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

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

/* Testimonial Split */
.testimonial-split {
    display: flex;
}

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

.testimonial-content {
    padding: 5rem 4rem;
    background: var(--bg-light);
}

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

.testimonial-item {
    margin-bottom: 3rem;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

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

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

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

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-benefits li {
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.contact-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

/* CTA Final */
.cta-final {
    padding: 6rem 2rem;
    background: var(--primary-color);
    text-align: center;
}

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

.cta-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
}

.cta-primary-large {
    font-size: 1.2rem;
    padding: 1.3rem 3rem;
}

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

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: white;
}

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

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

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

.sticky-cta-button:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Page Hero */
.page-hero {
    background: var(--primary-color);
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
}

/* About Split */
.about-split {
    display: flex;
}

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

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

.about-content {
    padding: 5rem 4rem;
}

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

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

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

/* Values Section */
.values-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

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

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
}

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

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

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

.team-content {
    padding: 5rem 4rem;
    background: var(--bg-white);
}

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

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

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

/* Experience Section */
.experience-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

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

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

.experience-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.exp-stat {
    flex: 0 1 200px;
    text-align: center;
}

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

.exp-stat span {
    display: block;
    color: var(--text-light);
    font-size: 1rem;
}

.experience-desc {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Approach Split */
.approach-split {
    display: flex;
}

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

.approach-content {
    padding: 5rem 4rem;
}

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

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

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

/* CTA About */
.cta-about {
    padding: 5rem 2rem;
    background: var(--primary-color);
    text-align: center;
}

.cta-about .cta-content h2 {
    color: white;
}

.cta-about .cta-content p {
    color: rgba(255,255,255,0.9);
}

/* Services Detailed */
.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.service-detail-card {
    margin-bottom: 4rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
}

.service-detail-card.featured-service {
    border: 2px solid var(--accent-color);
}

.service-badge-large {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--accent-color);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 10;
}

.service-detail-split {
    display: flex;
}

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

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

.service-detail-image {
    min-height: 400px;
}

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

.service-detail-content {
    padding: 3rem;
}

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

.service-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-price-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    text-align: center;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

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

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.detailed-list {
    margin-bottom: 2rem;
}

.detailed-list li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.detailed-list li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.cta-service {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

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

/* Process Section */
.process-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.process-step {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

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

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

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

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

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

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Services */
.cta-services {
    padding: 5rem 2rem;
    background: var(--primary-color);
    text-align: center;
}

.cta-services .cta-content h2 {
    color: white;
}

.cta-services .cta-content p {
    color: rgba(255,255,255,0.9);
}

/* Contact Split */
.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

.contact-info {
    padding-right: 3rem;
}

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

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

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.contact-block p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-block a {
    color: var(--accent-color);
    text-decoration: underline;
}

.map-placeholder {
    height: 100%;
    min-height: 500px;
}

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

/* Contact CTA Section */
.contact-cta-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.contact-cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-cta-container p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

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

/* Visit Section */
.visit-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

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

.visit-content h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

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

/* FAQ Contact */
.faq-contact {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

/* Thanks Section */
.thanks-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.thanks-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 8px;
    text-align: center;
}

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

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-container h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.thanks-info {
    text-align: left;
    margin-bottom: 3rem;
}

.thanks-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.thanks-step {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 6px;
}

.thanks-step strong {
    display: block;
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.thanks-step p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-selected-service {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 3rem;
}

.thanks-selected-service h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.thanks-selected-service p {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
}

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

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

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: #c0392b;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

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

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

.thanks-contact a {
    color: var(--accent-color);
    font-weight: 600;
}

/* Legal Page */
.legal-page {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

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

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

.legal-date {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

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

.legal-container p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .testimonial-split,
    .form-container,
    .about-split,
    .team-split,
    .approach-split,
    .service-detail-split,
    .contact-split,
    .visit-container {
        flex-direction: column;
    }

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

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

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

    .stats-row,
    .process-steps {
        flex-direction: column;
    }

    .contact-info {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}

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

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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

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

    .intro-content,
    .about-content,
    .team-content,
    .approach-content,
    .insight-content,
    .testimonial-content,
    .service-detail-content {
        padding: 3rem 2rem;
    }

    .value-item,
    .faq-item {
        flex: 1 1 100%;
    }

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

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

    .thanks-container {
        padding: 3rem 2rem;
    }

    .thanks-container h1 {
        font-size: 2.2rem;
    }

    .cta-buttons,
    .thanks-actions {
        flex-direction: column;
    }

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

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

    .services-header h2,
    .page-hero-content h1,
    .cta-content h2 {
        font-size: 2rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}