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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7e;
    --accent-color: #d4a574;
    --text-dark: #222222;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 6px 25px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

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

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

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

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

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

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

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

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

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

.cta-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.intro-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

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

.intro-image {
    flex: 1;
    padding: 2rem;
}

.intro-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.intro-content {
    flex: 1;
    padding: 3rem 4rem;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.values-section {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

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

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

.services-highlight {
    padding: 5rem 2rem;
}

.services-intro-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.services-text {
    flex: 1;
}

.services-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.services-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.link-arrow {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.link-arrow:hover {
    text-decoration: underline;
}

.services-preview {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.service-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

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

.testimonials-split {
    display: flex;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.testimonial-content {
    flex: 1;
    padding: 5rem 4rem;
}

.testimonial-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--bg-white);
}

.testimonial-card {
    margin-bottom: 2.5rem;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent-color);
}

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

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

.process-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.process-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.step {
    flex: 1;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.cta-split {
    display: flex;
    align-items: stretch;
    padding: 5rem 0;
}

.cta-left {
    flex: 1;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-left p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.cta-right {
    flex: 1;
    padding: 4rem;
    background-color: var(--bg-light);
}

.contact-form {
    max-width: 600px;
}

.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: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.final-cta {
    text-align: center;
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.final-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--secondary-color);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 2rem 1rem;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
}

.sticky-btn {
    display: block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie.accept {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.btn-cookie.reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-cookie:hover {
    transform: translateY(-2px);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    text-align: center;
    padding: 5rem 2rem 4rem;
}

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

.about-split {
    display: flex;
    align-items: center;
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.about-text {
    flex: 1;
    padding: 2rem 3rem;
}

.about-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.about-image {
    flex: 1;
    padding: 2rem;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.mission-split {
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

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

.mission-image {
    flex: 1;
    padding: 2rem;
}

.mission-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.mission-text {
    flex: 1;
    padding: 2rem 3rem;
}

.mission-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.team-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.team-member {
    flex: 1;
    text-align: center;
}

.team-member img {
    width: 100%;
    max-width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

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

.values-detailed {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.values-detailed h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.value-split {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.value-content {
    flex: 1;
}

.value-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.value-visual {
    flex: 1;
}

.quote-box,
.stat-box,
.info-box {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.quote-box p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--secondary-color);
}

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

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

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

.cta-about {
    text-align: center;
    padding: 5rem 2rem;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cta-about p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-detail-split {
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid var(--border-color);
}

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

.service-content {
    flex: 1;
    padding: 2rem 3rem;
}

.service-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

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

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-label {
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.cta-service {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-service:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.service-image {
    flex: 1;
    padding: 2rem;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.how-we-work {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.how-we-work h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.work-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.flow-step {
    flex: 1;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.flow-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.cta-services {
    text-align: center;
    padding: 5rem 2rem;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cta-services p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.contact-detail h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-detail p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-detail a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.contact-note {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-note p {
    color: var(--text-light);
    margin: 0;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
}

.map-caption {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
}

.visit-section {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.visit-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.visit-text {
    flex: 1;
}

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

.visit-directions {
    flex: 1;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.visit-directions h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.visit-directions ul {
    list-style: none;
}

.visit-directions li {
    padding: 0.8rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.visit-directions li:last-child {
    border-bottom: none;
}

.faq-contact {
    padding: 4rem 2rem;
}

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

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

.faq-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.contact-cta {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

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

.contact-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-section {
    padding: 5rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    font-size: 5rem;
    color: var(--accent-color);
    background-color: var(--bg-light);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.thanks-details {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.thanks-next {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.thanks-next h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.next-steps {
    list-style: none;
    counter-reset: step-counter;
}

.next-steps li {
    counter-increment: step-counter;
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
}

.next-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    background-color: var(--accent-color);
    color: var(--bg-white);
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

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

.btn-back,
.btn-services {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-back {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

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

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

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

.helpful-info {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.helpful-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.info-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.info-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.legal-page {
    padding: 3rem 2rem;
    background-color: var(--bg-white);
}

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

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

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

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

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

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

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

.legal-container a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

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

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

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

.gdpr-table th,
.cookie-table th {
    background-color: var(--bg-light);
    color: var(--primary-color);
    font-weight: 600;
}

.gdpr-table td,
.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-split,
    .intro-split,
    .about-split,
    .mission-split,
    .service-detail-split,
    .cta-split,
    .services-intro-split,
    .testimonials-split,
    .contact-split,
    .visit-content,
    .value-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .about-split.reverse,
    .mission-split.reverse,
    .service-detail-split.reverse,
    .value-split.reverse {
        flex-direction: column;
    }

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

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

    .values-grid,
    .process-steps,
    .team-grid,
    .work-flow,
    .info-cards {
        flex-direction: column;
    }

    .services-intro-split {
        gap: 2rem;
    }

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

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

    .faq-grid {
        flex-direction: column;
    }

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

@media (max-width: 640px) {
    .hero-left h1 {
        font-size: 1.8rem;
    }

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

    .values-header h2,
    .process-section h2 {
        font-size: 2rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}