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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #e8955e;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 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.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links {
    display: flex;
    gap: 35px;
}

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

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.hero-content-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

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

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

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
}

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

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

.intro-text-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text-right h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

.inline-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
    margin-top: 10px;
    display: inline-block;
}

.inline-link:hover {
    color: var(--secondary-color);
}

.trust-section {
    background-color: var(--bg-light);
    padding: 70px 20px;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 50px;
}

.trust-stat {
    text-align: center;
}

.trust-stat h3 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.services-preview {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 20px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.services-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 300px;
}

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

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

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

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

.btn-select-service:hover {
    background-color: #234a5f;
}

.testimonials-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
}

.testimonial-content-left {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.testimonial-content-left h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.testimonial-item {
    margin-bottom: 35px;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-style: italic;
}

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

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

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

.how-it-works {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.steps-container {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.step-card {
    flex: 1;
    max-width: 350px;
    text-align: center;
}

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

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.form-section {
    background-color: var(--bg-light);
    padding: 100px 20px;
}

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

.form-wrapper {
    flex: 1;
}

.booking-form {
    background-color: var(--bg-white);
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    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(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.checkbox-group a {
    color: var(--primary-color);
}

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

.btn-submit:hover {
    background-color: #234a5f;
}

.final-cta {
    background-color: var(--primary-color);
    padding: 100px 20px;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary,
.btn-secondary,
.btn-primary-large {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: #234a5f;
}

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

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

.btn-primary-large {
    background-color: var(--secondary-color);
    color: white;
    font-size: 1.15rem;
    padding: 18px 45px;
}

.btn-primary-large:hover {
    background-color: #d17d42;
}

.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
}

.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: color 0.3s;
}

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

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

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

.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;
    font-size: 0.95rem;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta-btn {
    display: block;
    padding: 16px 30px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.sticky-cta-btn:hover {
    background-color: #d17d42;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 400px;
}

.page-hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

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

.about-story-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.about-text-left {
    flex: 1;
    padding: 60px;
}

.about-text-left h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

.about-image-right {
    flex: 1;
    overflow: hidden;
}

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

.team-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    text-align: center;
}

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

.team-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.team-member {
    flex: 1;
    max-width: 350px;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
}

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

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.team-role {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
}

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

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

.values-content-right {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.values-content-right h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.value-item {
    margin-bottom: 35px;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.approach-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    text-align: center;
}

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

.approach-container {
    display: flex;
    gap: 40px;
}

.approach-card {
    flex: 1;
    text-align: left;
    padding: 35px;
    background-color: var(--bg-light);
}

.approach-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.approach-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-about {
    background-color: var(--bg-light);
    padding: 80px 20px;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-header {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.services-full {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

.service-detail-card {
    display: flex;
    margin-bottom: 80px;
    background-color: var(--bg-white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

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

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

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

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-light);
}

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

.service-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

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

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

.service-info-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.service-info-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

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

.info-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 35px;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-light);
}

.info-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.contact-info-left {
    flex: 1;
    padding: 60px;
}

.contact-info-left h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 8px;
}

.contact-map-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.contact-note-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-note-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-note-box p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-section {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 20px;
}

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

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

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

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

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

.cta-contact {
    background-color: var(--primary-color);
    padding: 80px 20px;
    text-align: center;
}

.cta-contact-content h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 20px;
}

.cta-contact-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.thanks-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.thanks-container {
    text-align: center;
}

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

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

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

.booking-summary {
    background-color: var(--bg-light);
    padding: 40px;
    margin-bottom: 50px;
    text-align: left;
}

.booking-summary h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    color: var(--text-dark);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: 600;
    color: var(--text-dark);
}

.summary-value {
    color: var(--text-light);
}

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

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 25px;
}

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

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

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

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

.thanks-note {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    padding: 20px;
    text-align: left;
}

.thanks-note p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

.thanks-note a {
    color: var(--primary-color);
}

.legal-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.legal-container {
    background-color: var(--bg-white);
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

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

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

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

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

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

.legal-back {
    margin-top: 50px;
    text-align: center;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .testimonials-split,
    .about-story-split,
    .values-split,
    .page-hero-split,
    .contact-split {
        flex-direction: column;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .hero-content-left,
    .intro-text-right,
    .testimonial-content-left,
    .about-text-left,
    .values-content-right,
    .page-hero-content,
    .contact-info-left,
    .service-detail-content {
        padding: 50px 30px;
    }

    .hero-image-right,
    .intro-image-left,
    .testimonial-image-right,
    .about-image-right,
    .values-image-left,
    .page-hero-image,
    .service-detail-image {
        min-height: 400px;
    }

    .steps-container,
    .team-grid,
    .approach-container,
    .info-grid {
        flex-direction: column;
    }

    .form-container-split {
        flex-direction: column;
        gap: 40px;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .footer-container {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 25px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

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

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

    .trust-container {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta-btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .contact-note-box {
        position: static;
        margin-top: 20px;
    }
}

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

    .services-header h2,
    .how-it-works h2,
    .team-section h2,
    .approach-section h2 {
        font-size: 2rem;
    }

    .booking-form {
        padding: 25px;
    }

    .legal-container {
        padding: 30px 20px;
    }
}