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

:root {
    --primary-color: #1a365d;
    --secondary-color: #2563eb;
    --accent-color: #0ea5e9;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #2ecc71;
    --transition: all 0.3s ease;
}

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

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

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

.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: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 16px 32px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-outline {
    padding: 16px 32px;
    background: transparent;
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    transition: var(--transition);
}

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

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

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

.trust-indicators {
    padding: 60px 0;
    background: var(--bg-white);
}

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

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.trust-item h3 {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.trust-item p {
    color: var(--text-light);
    font-size: 16px;
}

.split-section {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

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

.split-content-right,
.split-content-left {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    align-items: center;
    background: var(--bg-white);
}

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

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

.split-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.3;
}

.split-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.text-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    transition: var(--transition);
}

.text-link:hover {
    color: var(--accent-color);
}

.feature-list {
    list-style: none;
    margin-top: 25px;
}

.feature-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-light);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 20px;
}

.services-preview {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title-centered {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

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

.service-card-split {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

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

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

.service-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.service-content p {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent-color);
}

.cta-strip {
    background: var(--secondary-color);
    padding: 60px 0;
}

.cta-strip-content {
    text-align: center;
    color: white;
}

.cta-strip-content h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-strip-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta-strip {
    padding: 16px 40px;
    background: white;
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

.btn-cta-strip:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.testimonials-split {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.testimonial-card {
    flex: 1;
    padding: 40px;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
    font-size: 17px;
    margin-bottom: 5px;
}

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

.info-strip {
    padding: 60px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

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

.info-item {
    flex: 1;
    min-width: 250px;
}

.info-item h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.info-item p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

.services-form-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.form-intro h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-intro p {
    color: var(--text-light);
    font-size: 17px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

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

.btn-submit {
    padding: 16px 32px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.main-footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

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

.footer-bottom p {
    color: rgba(255,255,255,0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 25px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-primary {
    padding: 12px 28px;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--bg-light);
}

.btn-secondary {
    padding: 12px 28px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.page-hero-split {
    display: flex;
    min-height: 400px;
    align-items: stretch;
}

.hero-content-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

.hero-content-left h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.hero-lead {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.story-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.story-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.lead-text {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.7;
}

.story-section p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.split-section-alt {
    display: flex;
    align-items: stretch;
    min-height: 500px;
    background: var(--bg-light);
}

.values-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background: var(--bg-light);
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.team-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.team-grid-split {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.team-member-card {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.team-image {
    flex: 0 0 300px;
    overflow: hidden;
}

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

.team-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-info h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.team-role {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.team-bio {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 16px;
}

.stats-section-split {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
}

.stats-overlay {
    position: relative;
    z-index: 1;
}

.stats-section-split h2 {
    text-align: center;
    color: white;
    font-size: 42px;
    margin-bottom: 60px;
}

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

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.cta-section-centered {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-section-centered h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.btn-large {
    padding: 18px 45px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

.btn-large:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.services-hero {
    padding: 80px 0 60px;
    background: var(--bg-light);
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.services-hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-detailed {
    padding: 60px 0 80px;
    background: var(--bg-white);
}

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

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

.service-detail-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-intro {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

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

.service-features h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-features ul {
    list-style: none;
}

.service-features ul li {
    padding: 10px 0 10px 25px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.service-features ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 20px;
}

.service-pricing-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.price-note {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-service {
    display: inline-block;
    padding: 12px 28px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

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

.comparison-cta {
    padding: 60px 0;
    background: var(--bg-light);
    text-align: center;
}

.comparison-cta h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.comparison-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-cta-alt {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

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

.service-inquiry-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.contact-hero {
    padding: 80px 0 60px;
    background: var(--bg-light);
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-main-split {
    padding: 60px 0 80px;
    background: var(--bg-white);
}

.contact-grid-split {
    display: flex;
    gap: 60px;
}

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

.contact-info-side h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

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

.contact-block h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

.contact-link {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--accent-color);
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

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

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 54, 93, 0.9);
    padding: 20px;
    color: white;
    text-align: center;
}

.appointment-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-intro-centered {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

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

.appointment-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 35px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.appointment-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.appointment-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-appointment {
    display: inline-block;
    padding: 12px 24px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

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

.faq-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

.thanks-section {
    padding: 80px 0;
    background: var(--bg-light);
    min-height: 70vh;
}

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

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

.thanks-container h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.thanks-service-info {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 50px;
    border-left: 4px solid var(--success-color);
}

.thanks-service-info p {
    font-size: 18px;
    color: var(--text-dark);
    margin: 0;
}

.thanks-next-steps {
    margin-bottom: 50px;
}

.thanks-next-steps h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.steps-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.step-item {
    flex: 1;
    background: white;
    padding: 35px 25px;
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

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

.btn-primary-large {
    padding: 16px 40px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

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

.btn-secondary-large {
    padding: 16px 40px;
    background: transparent;
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    display: inline-block;
    transition: var(--transition);
}

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

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

.thanks-contact-info p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.email-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.email-link:hover {
    color: var(--accent-color);
}

.legal-content {
    padding: 80px 0;
    background: var(--bg-white);
}

.legal-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.legal-updated {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 12px;
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content ul li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

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

.cookie-table thead {
    background: var(--bg-light);
}

.cookie-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
}

.cookie-table td {
    padding: 15px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

@media (max-width: 1024px) {
    .hero-split,
    .split-section,
    .page-hero-split,
    .split-section-alt {
        flex-direction: column;
    }

    .hero-left,
    .hero-content-left,
    .split-content-right,
    .split-content-left {
        padding: 50px 30px;
    }

    .hero-right,
    .hero-visual-right,
    .split-image-left,
    .split-image-right {
        min-height: 350px;
    }

    .split-section.reverse {
        flex-direction: column;
    }

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

    .service-detail-split,
    .service-detail-split.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .contact-grid-split {
        flex-direction: column;
    }

    .testimonials-grid-split {
        flex-direction: column;
    }

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

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

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

    .hamburger {
        display: flex;
    }

    .hero-left h1,
    .hero-content-left h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 36px;
    }

    .section-title-centered,
    .section-title {
        font-size: 32px;
    }

    .split-text h2 {
        font-size: 28px;
    }

    .form-row {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .trust-grid,
    .info-grid,
    .values-grid,
    .appointment-grid {
        flex-direction: column;
    }

    .team-image {
        flex: 0 0 250px;
    }

    .form-container {
        padding: 40px 25px;
    }
}

@media (max-width: 480px) {
    .hero-cta-group,
    .thanks-cta-group {
        flex-direction: column;
    }

    .btn-hero,
    .btn-outline,
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        text-align: center;
    }
}