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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #b8956a;
    --text-primary: #1a1a1a;
    --text-secondary: #6b6b6b;
    --text-light: #ffffff;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

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

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

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

ul {
    list-style: none;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1.5rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

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

.hero-split {
    display: flex;
    min-height: 100vh;
    margin-top: 80px;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--text-light);
    font-weight: 600;
    border-radius: 2px;
    transition: var(--transition);
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

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

.intro-split {
    display: flex;
    min-height: 80vh;
}

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

.intro-left {
    flex: 1;
    overflow: hidden;
}

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

.intro-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 6rem;
}

.intro-right h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.intro-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.value-grid {
    padding: 6rem 6rem;
    background: var(--bg-light);
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.services-showcase {
    padding: 7rem 6rem;
}

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

.services-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.services-split-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-row {
    display: flex;
    gap: 4rem;
    align-items: center;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-color);
}

.service-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-left {
    flex: 2;
}

.service-left h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-left p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-details {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.service-duration {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.service-cta {
    color: var(--accent-color);
    font-weight: 600;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 2px;
}

.service-cta:hover {
    color: #a07f54;
    border-bottom-color: #a07f54;
}

.service-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

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

.testimonial-split {
    display: flex;
    min-height: 70vh;
}

.testimonial-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 5rem 6rem;
    background: var(--primary-color);
}

.testimonial-content p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-content cite {
    color: var(--accent-color);
    font-style: normal;
    font-size: 1rem;
}

.testimonial-right {
    flex: 1;
    overflow: hidden;
}

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

.process-split {
    display: flex;
    min-height: 80vh;
}

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

.process-left {
    flex: 1;
    overflow: hidden;
}

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

.process-right {
    flex: 1;
    padding: 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-right h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.process-step {
    display: flex;
    gap: 2rem;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    min-width: 50px;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

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

.expertise-highlight {
    padding: 7rem 6rem;
    background: var(--bg-light);
}

.expertise-highlight h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 600;
}

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

.expertise-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
}

.expertise-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.expertise-item p {
    color: var(--text-secondary);
}

.locations-split {
    display: flex;
    min-height: 80vh;
}

.locations-left {
    flex: 1;
    padding: 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.locations-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.locations-left p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.locations-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.locations-list li {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    color: var(--text-primary);
}

.locations-right {
    flex: 1;
    overflow: hidden;
}

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

.consultation-form-section {
    padding: 7rem 6rem;
    background: var(--bg-light);
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-container > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

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

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

.form-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent-color);
    color: var(--text-light);
    border: none;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    background: #a07f54;
}

.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 6rem 2rem;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-brand p {
    color: #b0b0b0;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

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

.footer-column a {
    color: #b0b0b0;
    font-size: 0.95rem;
}

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

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

.footer-bottom p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 1.5rem 3rem;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.cookie-btn.accept {
    background: var(--accent-color);
    color: var(--text-light);
}

.cookie-btn.accept:hover {
    background: #a07f54;
}

.cookie-btn.reject {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

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

.page-hero-split {
    display: flex;
    min-height: 70vh;
    margin-top: 80px;
}

.page-hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    background: var(--bg-light);
}

.page-hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -1px;
}

.page-hero-left p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.page-hero-right {
    flex: 1;
    overflow: hidden;
}

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

.about-split {
    display: flex;
    min-height: 70vh;
}

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

.about-left {
    flex: 1;
    overflow: hidden;
}

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

.about-right {
    flex: 1;
    padding: 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-right h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.philosophy-section {
    padding: 7rem 6rem;
    background: var(--bg-light);
}

.philosophy-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 600;
}

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

.philosophy-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 2.5rem;
}

.philosophy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.philosophy-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.team-split {
    display: flex;
    min-height: 70vh;
}

.team-left {
    flex: 1;
    padding: 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.team-right {
    flex: 1;
    overflow: hidden;
}

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

.values-split {
    display: flex;
    min-height: 70vh;
}

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

.values-left {
    flex: 1;
    overflow: hidden;
}

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

.values-right {
    flex: 1;
    padding: 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-right h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.values-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.values-list strong {
    color: var(--text-primary);
    font-weight: 600;
}

.difference-section {
    padding: 7rem 6rem;
    background: var(--bg-light);
}

.difference-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 600;
}

.difference-split-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.difference-item {
    flex: 1;
    background: var(--bg-white);
    padding: 3rem;
}

.difference-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.difference-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.network-split {
    display: flex;
    min-height: 70vh;
}

.network-left {
    flex: 1;
    padding: 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.network-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.network-left p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.network-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.network-list li {
    font-size: 1.05rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

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

.network-right {
    flex: 1;
    overflow: hidden;
}

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

.commitment-section {
    padding: 7rem 6rem;
    background: var(--primary-color);
    color: var(--text-light);
}

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

.commitment-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.commitment-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 1.5rem;
}

.commitment-content .cta-secondary {
    border-color: var(--text-light);
    color: var(--text-light);
    margin-top: 2rem;
}

.commitment-content .cta-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.page-hero-centered {
    margin-top: 80px;
    padding: 6rem 6rem 4rem;
    text-align: center;
    background: var(--bg-light);
}

.page-hero-centered h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.page-hero-centered p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    min-height: 70vh;
    padding: 4rem 0;
}

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

.service-detail-left {
    flex: 1.5;
    padding: 3rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-detail-left h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-detail-left p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-detail-features {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.service-detail-features h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-detail-features ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

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

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

.service-detail-right {
    flex: 1;
    padding: 3rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

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

.service-detail-price {
    background: var(--bg-light);
    padding: 2.5rem;
    text-align: center;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-detail-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--text-light);
    font-weight: 600;
    border-radius: 2px;
    transition: var(--transition);
}

.service-detail-cta:hover {
    background: #a07f54;
}

.service-approach {
    padding: 6rem 6rem;
    background: var(--primary-color);
    color: var(--text-light);
}

.service-approach h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.approach-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 1.5rem;
}

.service-cta-section {
    padding: 6rem 6rem;
    background: var(--bg-light);
}

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

.service-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-hero-split {
    display: flex;
    min-height: 60vh;
    margin-top: 80px;
}

.contact-hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    background: var(--bg-light);
}

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

.contact-hero-left p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-hero-right {
    flex: 1;
    overflow: hidden;
}

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

.contact-info-split {
    display: flex;
    min-height: 60vh;
}

.contact-info-left {
    flex: 1;
    padding: 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-left h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

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

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

.contact-info-right {
    flex: 1;
    overflow: hidden;
}

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

.contact-approach {
    padding: 6rem 6rem;
    background: var(--bg-light);
}

.contact-approach h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 600;
}

.approach-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.approach-item {
    flex: 1;
    background: var(--bg-white);
    padding: 2.5rem;
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.approach-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.location-split {
    display: flex;
    min-height: 60vh;
}

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

.location-left {
    flex: 1;
    overflow: hidden;
}

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

.location-right {
    flex: 1;
    padding: 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.location-right p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.faq-section {
    padding: 7rem 6rem;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 600;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.contact-final-cta {
    padding: 6rem 6rem;
    background: var(--primary-color);
    color: var(--text-light);
}

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

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.final-cta-content p {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 2rem;
}

.thanks-hero {
    margin-top: 80px;
    padding: 6rem 6rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--bg-light);
}

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

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.thanks-container > p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.thanks-details {
    margin: 4rem 0;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 2px;
}

.thanks-details h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

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

.step-number {
    min-width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

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

.thanks-service-info {
    background: var(--bg-white);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 2px;
}

.thanks-service-info h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

.thanks-contact {
    margin-top: 3rem;
}

.thanks-contact p {
    color: var(--text-secondary);
}

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

.legal-page {
    margin-top: 80px;
    padding: 5rem 6rem;
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

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

.legal-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-content li {
    list-style: disc;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

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

.legal-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

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

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

.cookies-table th {
    background: var(--bg-light);
    font-weight: 600;
}

.cookies-table td {
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .nav-container,
    .hero-left,
    .intro-right,
    .value-grid,
    .services-showcase,
    .process-right,
    .expertise-highlight,
    .locations-left,
    .consultation-form-section,
    .footer,
    .about-right,
    .philosophy-section,
    .team-left,
    .values-right,
    .network-left,
    .commitment-section,
    .page-hero-centered,
    .service-detail-left,
    .service-detail-right,
    .service-approach,
    .service-cta-section,
    .contact-info-left,
    .contact-approach,
    .location-right,
    .faq-section,
    .contact-final-cta,
    .thanks-hero,
    .legal-page {
        padding-left: 3rem;
        padding-right: 3rem;
    }

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

    .services-header h2,
    .intro-right h2,
    .process-right h2 {
        font-size: 2rem;
    }

    .service-row {
        flex-direction: column;
        gap: 2rem;
    }

    .service-right {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .testimonial-split,
    .process-split,
    .locations-split,
    .page-hero-split,
    .about-split,
    .team-split,
    .values-split,
    .network-split,
    .service-detail-split,
    .contact-hero-split,
    .contact-info-split,
    .location-split {
        flex-direction: column;
    }

    .hero-left,
    .intro-right,
    .testimonial-left,
    .process-right,
    .locations-left,
    .page-hero-left,
    .about-right,
    .team-left,
    .values-right,
    .network-left,
    .service-detail-left,
    .service-detail-right,
    .contact-hero-left,
    .contact-info-left,
    .location-right {
        padding: 3rem 2rem;
    }

    .hero-right,
    .intro-left,
    .testimonial-right,
    .process-left,
    .locations-right,
    .page-hero-right,
    .about-left,
    .team-right,
    .values-left,
    .network-right,
    .contact-hero-right,
    .contact-info-right,
    .location-left {
        min-height: 300px;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-text h1,
    .page-hero-left h1,
    .contact-hero-left h1 {
        font-size: 2rem;
    }

    .value-grid {
        padding: 4rem 2rem;
    }

    .services-showcase {
        padding: 4rem 2rem;
    }

    .expertise-grid {
        gap: 2rem;
    }

    .expertise-item {
        flex: 1 1 100%;
    }

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

    .footer-links {
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .philosophy-grid,
    .difference-split-grid,
    .approach-split {
        flex-direction: column;
    }

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

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

    .legal-page {
        padding: 3rem 2rem;
    }
}
