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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #8b9d83;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #f8f8f8;
    --bg-light: #ffffff;
    --bg-cream: #faf8f5;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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-light);
    font-size: 16px;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--text-light);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
}

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

.btn-accept:hover {
    background: #234830;
}

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

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--bg-light);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-right {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-right a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: stretch;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
}

.hero-left {
    background: var(--bg-cream);
    padding: 8% 6%;
    align-items: center;
}

.hero-content {
    max-width: 560px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -1.5px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-right {
    overflow: hidden;
    position: relative;
}

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

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

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

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

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

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

.intro-image,
.intro-text {
    flex: 1;
}

.intro-image {
    overflow: hidden;
}

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

.intro-text {
    padding: 6% 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

.intro-text p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #3a3a3a;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

.link-arrow::after {
    content: ' →';
}

.link-arrow:hover {
    transform: translateX(4px);
}

.philosophy-full {
    padding: 8% 10%;
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.philosophy-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.philosophy-wrapper p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
}

.services-grid {
    padding: 8% 5%;
    background: var(--bg-cream);
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.services-intro h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.services-intro p {
    font-size: 1.15rem;
    color: #5a5a5a;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.service-content p {
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.btn-select {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--text-light);
    font-weight: 600;
    border-radius: 4px;
    font-size: 1rem;
}

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

.testimonial-split {
    display: flex;
}

.testimonial-left,
.testimonial-right {
    flex: 1;
    padding: 6% 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-left {
    background: var(--secondary-color);
}

.testimonial-right {
    background: var(--accent-color);
}

.testimonial-content {
    max-width: 500px;
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
    opacity: 0.9;
}

.process-section {
    padding: 8% 5%;
    background: var(--bg-light);
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.process-step {
    flex: 1 1 calc(25% - 2rem);
    min-width: 220px;
    text-align: center;
}

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

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.process-step p {
    color: #5a5a5a;
    line-height: 1.7;
}

.cta-split {
    display: flex;
    align-items: center;
    background: var(--bg-cream);
}

.cta-left,
.cta-right {
    flex: 1;
    padding: 6% 5%;
}

.cta-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

.cta-left p {
    font-size: 1.1rem;
    color: #4a4a4a;
}

.cta-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-large {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: var(--primary-color);
    color: var(--text-light);
    font-weight: 700;
    border-radius: 4px;
    font-size: 1.2rem;
}

.cta-large:hover {
    background: #234830;
    transform: scale(1.05);
}

.form-section {
    padding: 8% 5%;
    background: var(--bg-light);
}

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

.form-left,
.form-right {
    flex: 1;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.form-left p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.booking-form {
    background: var(--bg-cream);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.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.875rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    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);
}

.btn-submit {
    width: 100%;
    padding: 1.125rem;
    background: var(--primary-color);
    color: var(--text-light);
    font-weight: 700;
    border-radius: 4px;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #234830;
}

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

.benefits-image,
.benefits-text {
    flex: 1;
}

.benefits-image {
    overflow: hidden;
}

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

.benefits-text {
    padding: 6% 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-cream);
}

.benefits-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.benefits-list li {
    padding: 0.875rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #3a3a3a;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 4rem 5% 2rem;
}

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

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--accent-color);
}

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

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    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.6);
    font-size: 0.9rem;
}

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

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-light);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: var(--shadow-heavy);
    font-size: 1rem;
}

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

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

.hero-content-left {
    flex: 1;
    background: var(--bg-cream);
    padding: 6% 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.15;
}

.hero-content-left p {
    font-size: 1.2rem;
    color: #4a4a4a;
    line-height: 1.8;
}

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

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

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

.story-image,
.story-text {
    flex: 1;
}

.story-image {
    overflow: hidden;
}

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

.story-text {
    padding: 6% 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.story-text p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #3a3a3a;
    line-height: 1.8;
}

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

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

.values-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
    padding: 2.5rem;
    background: var(--bg-cream);
    border-radius: 8px;
}

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

.value-card p {
    color: #4a4a4a;
    line-height: 1.7;
}

.team-split {
    display: flex;
    align-items: stretch;
    background: var(--bg-cream);
}

.team-text,
.team-image {
    flex: 1;
}

.team-text {
    padding: 6% 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.team-text p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #3a3a3a;
    line-height: 1.8;
}

.team-image {
    overflow: hidden;
}

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

.approach-section {
    padding: 8% 10%;
    background: var(--secondary-color);
    color: var(--text-light);
}

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

.approach-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.approach-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.cta-full {
    padding: 8% 5%;
    background: var(--primary-color);
    text-align: center;
}

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

.cta-content-center h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-weight: 700;
    line-height: 1.2;
}

.services-detail {
    padding: 4% 5%;
    background: var(--bg-light);
}

.service-detail-split {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 6rem;
    align-items: center;
}

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

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

.service-detail-image {
    overflow: hidden;
    border-radius: 8px;
}

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

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.service-detail-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #3a3a3a;
    line-height: 1.8;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #3a3a3a;
}

.service-detail-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

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

.contact-info,
.contact-map {
    flex: 1;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-item p {
    color: #3a3a3a;
    line-height: 1.8;
}

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

.contact-item .note {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-style: italic;
    margin-top: 0.5rem;
}

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

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

.faq-section {
    padding: 8% 5%;
    background: var(--bg-cream);
}

.faq-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
}

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

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

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

.faq-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

.thanks-section {
    padding: 8% 5%;
    background: var(--bg-cream);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.thanks-details {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
}

.thanks-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-details p {
    font-size: 1.05rem;
    color: #3a3a3a;
}

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

.next-steps {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
}

.step .step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 1rem;
}

.step p {
    color: #4a4a4a;
    line-height: 1.7;
}

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

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--text-light);
    font-weight: 600;
    border-radius: 4px;
    font-size: 1.05rem;
}

.btn-primary:hover {
    background: #234830;
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-size: 1.05rem;
}

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

.legal-page {
    padding: 6% 5%;
    background: var(--bg-light);
}

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.last-updated {
    color: #6a6a6a;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #3a3a3a;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #3a3a3a;
}

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

.btn-reset {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--text-light);
    font-weight: 600;
    border-radius: 4px;
    margin-top: 1rem;
}

.btn-reset:hover {
    background: #234830;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .testimonial-split,
    .cta-split,
    .form-split,
    .benefits-split,
    .page-hero-split,
    .story-split,
    .team-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

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

    .services-intro h2,
    .process-header h2,
    .values-header h2,
    .faq-wrapper h2,
    .thanks-content h1,
    .legal-content h1 {
        font-size: 2.2rem;
    }

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

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

    .nav-right {
        gap: 1.5rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}

@media (max-width: 640px) {
    .nav-split {
        padding: 1rem 4%;
    }

    .nav-right {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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

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

    .process-step {
        flex: 1 1 100%;
    }

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