:root {
    --primary-color: #2D5F5D;
    --secondary-color: #C19A6B;
    --accent-color: #8B4C4C;
    --text-dark: #1A1A1A;
    --text-light: #4A4A4A;
    --bg-light: #F8F6F4;
    --bg-white: #FFFFFF;
    --border-color: #E0DED9;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

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

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.nav-split {
    background: var(--bg-white);
    padding: 1.5rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hero-split {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
}

.intro-split {
    padding: 6rem 2rem;
}

.intro-split,
.split-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.split-image {
    flex: 1;
}

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

.split-text {
    flex: 1;
}

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

.split-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
}

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

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

.services-grid-split {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-centered h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

.service-card {
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.split-card {
    display: flex;
    align-items: stretch;
}

.service-image {
    flex: 1;
}

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

.service-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    display: inline-block;
}

.btn-primary:hover {
    background: #234847;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    display: inline-block;
    border: 2px solid var(--primary-color);
}

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

.btn-select {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
}

.btn-select:hover {
    background: #A07F54;
}

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

.btn-full {
    width: 100%;
}

.why-choose-split {
    padding: 6rem 2rem;
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 5rem;
    align-items: center;
}

.reasons-list {
    margin-top: 2rem;
}

.reason-item {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--secondary-color);
}

.reason-item h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.reason-item p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.testimonials-split {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

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

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

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

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

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

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

.cta-booking-split,
.cta-services,
.cta-about {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

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

.cta-content-centered h2 {
    font-size: 2.8rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

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

.cta-content-centered .btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
}

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

.process-split {
    padding: 6rem 2rem;
}

.process-steps {
    margin-top: 2rem;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.footer {
    background: #1A1A1A;
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 2rem 2rem;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    color: var(--bg-white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    overflow: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-hover);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: none;
}

.cookie-banner.active {
    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: 1rem;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.cookie-buttons button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
}

#cookie-accept {
    background: var(--primary-color);
    color: var(--bg-white);
}

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

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

.sticky-cta-btn {
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: var(--shadow-hover);
}

.sticky-cta-btn:hover {
    background: #733838;
    transform: scale(1.05);
}

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

.page-hero-content h1 {
    font-size: 3rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

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

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail {
    margin-bottom: 5rem;
    padding: 3rem 0;
}

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

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

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

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

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

.service-detail-content h4 {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin: 1.5rem 0 1rem;
}

.service-detail-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    margin-bottom: 0.7rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

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

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

.service-pricing .duration {
    color: var(--text-light);
    font-size: 1.05rem;
}

.additional-services {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.extras-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

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

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

.extra-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.extra-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.about-story {
    padding: 4rem 2rem;
}

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

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

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

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

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

.value-card {
    flex: 1;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

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

.team-section {
    padding: 4rem 2rem;
}

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

.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: 500px;
    object-fit: cover;
    border-radius: 8px;
}

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

.studio-description {
    margin-top: 3rem;
}

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

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

.philosophy-section {
    padding: 5rem 2rem;
}

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

.philosophy-content-centered h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.philosophy-content-centered blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
}

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

.certifications-split {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

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

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

.cert-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.cert-content ul li {
    margin-bottom: 0.7rem;
}

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

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

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

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

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

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

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

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

.contact-block button {
    margin-top: 1rem;
}

.contact-map {
    flex: 1;
}

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

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 95, 93, 0.9);
    color: var(--bg-white);
    padding: 1.5rem;
    text-align: center;
}

.map-overlay p {
    font-size: 1.1rem;
    margin: 0;
}

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

.directions-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

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

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

.direction-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.7rem;
}

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

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

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

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

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

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

.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: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    padding: 4rem 2rem;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
}

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

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

.thanks-info {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    text-align: left;
}

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

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

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

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

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

.selected-service-info p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

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

.thanks-tips {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

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

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

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

.tip-card {
    flex: 1;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.tip-card h4 {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.tip-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.contact-info-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-info-box h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-box p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-email {
    font-size: 1.3rem !important;
    font-weight: 600;
}

.contact-email a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-address {
    margin-top: 2rem;
    line-height: 1.8;
}

.legal-page {
    padding: 4rem 2rem;
    background: var(--bg-light);
    min-height: 70vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

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

.legal-container h3 {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin: 2rem 0 0.75rem;
}

.legal-container h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 1.5rem 0 0.5rem;
}

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

.legal-container ul,
.legal-container ol {
    margin: 1rem 0 1.5rem;
    padding-left: 2rem;
}

.legal-container ul li,
.legal-container ol li {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-container ul {
    list-style: disc;
}

.legal-container ol {
    list-style: decimal;
}

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

.legal-container a:hover {
    color: var(--accent-color);
}

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

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

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

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

@media (max-width: 1024px) {
    .hero-content,
    .split-layout,
    .intro-split,
    .why-choose-split,
    .team-section {
        flex-direction: column;
        gap: 3rem;
    }

    .reverse {
        flex-direction: column;
    }

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

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

    .testimonials-grid,
    .values-grid,
    .extras-grid,
    .directions-grid,
    .tips-grid {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

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

    .hero-text p {
        font-size: 1.1rem;
    }

    .split-text h2,
    .section-header-centered h2 {
        font-size: 2rem;
    }

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

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

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

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