/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
    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 {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(28, 28, 28, 0.97);
    color: #ffffff;
    padding: 1.2rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

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

.cookie-content a {
    color: #e8c4a0;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #d4a574;
    color: #ffffff;
}

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

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

/* Navigation */
.main-nav {
    position: sticky;
    top: 0;
    background: #ffffff;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-brand a {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c2c2c;
    transition: all 0.3s ease;
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 1rem 5%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.nav-menu li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.nav-menu li:last-child {
    border-bottom: none;
}

.nav-menu a {
    color: #2c2c2c;
    font-weight: 500;
    font-size: 1.05rem;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: #d4a574;
}

/* Hero Asymmetric */
.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero-offset-left {
    padding: 3rem 5% 2rem;
    z-index: 2;
}

.hero-text-block {
    max-width: 600px;
}

.hero-title-large {
    font-size: 2.8rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    background: #d4a574;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.cta-hero:hover {
    background: #c89560;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.hero-image-offset {
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

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

/* Intro Asymmetric */
.intro-asymmetric {
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.intro-left-narrow {
    width: 100%;
}

.intro-left-narrow img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
}

.intro-right-wide {
    width: 100%;
}

.section-title-offset {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
}

.text-large {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
    font-weight: 500;
}

.intro-right-wide p {
    margin-bottom: 1.2rem;
    color: #4a4a4a;
    font-size: 1.05rem;
}

.link-inline {
    color: #d4a574;
    font-weight: 600;
    font-size: 1.1rem;
}

.link-inline:hover {
    color: #c89560;
}

/* Services Preview */
.services-preview {
    padding: 5rem 5%;
    background: #f9f7f5;
}

.services-header-offset {
    max-width: 700px;
    margin-bottom: 3rem;
}

.services-header-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.services-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
}

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

.service-content {
    padding: 1.8rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.service-content p {
    margin-bottom: 1.5rem;
    color: #5a5a5a;
    line-height: 1.6;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 1.2rem;
}

.btn-select-service {
    width: 100%;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-select-service:hover {
    background: #1a1a1a;
}

.cta-center-offset {
    text-align: center;
    margin-top: 2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid #2c2c2c;
    color: #2c2c2c;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #2c2c2c;
    color: #ffffff;
}

/* Testimonials Asymmetric */
.testimonials-asymmetric {
    padding: 5rem 5%;
    background: #2c2c2c;
    color: #ffffff;
}

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

.testimonials-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.testimonials-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-block {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #d4a574;
}

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

.testimonial-author {
    font-weight: 600;
    color: #d4a574;
}

/* Booking Form Section */
.booking-form-section {
    padding: 5rem 5%;
    background: #f0ede9;
}

.form-container-asymmetric {
    max-width: 700px;
}

.form-intro-offset {
    margin-bottom: 2.5rem;
}

.form-intro-offset h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-intro-offset p {
    font-size: 1.1rem;
    color: #5a5a5a;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #d0d0d0;
    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: #d4a574;
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-group-checkbox label {
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.5;
}

.form-group-checkbox a {
    color: #d4a574;
    text-decoration: underline;
}

.btn-submit {
    background: #d4a574;
    color: #ffffff;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #c89560;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

/* Why Us Offset */
.why-us-offset {
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-us-image-left {
    width: 100%;
}

.why-us-image-left img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.why-us-content h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.feature-item p {
    color: #5a5a5a;
    line-height: 1.6;
}

/* Sticky CTA Bar */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    padding: 1rem 5%;
    z-index: 999;
    display: none;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
}

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

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

.sticky-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-sticky {
    background: #d4a574;
    color: #ffffff;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #c89560;
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 5% 1.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #d4a574;
}

.footer-column p {
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-column a {
    color: #d0d0d0;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #d4a574;
}

.footer-bottom {
    border-top: 1px solid #3a3a3a;
    padding-top: 1.5rem;
    text-align: center;
    color: #909090;
    font-size: 0.9rem;
}

/* About Page Styles */
.page-header-asymmetric {
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.header-content-offset {
    max-width: 600px;
}

.header-content-offset h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.1;
}

.header-content-offset p {
    font-size: 1.2rem;
    color: #5a5a5a;
}

.header-image-offset {
    width: 100%;
}

.header-image-offset img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

.about-story {
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: #f9f7f5;
}

.story-block-left {
    width: 100%;
}

.story-block-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-block-left p {
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.story-image-right {
    width: 100%;
}

.story-image-right img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.values-asymmetric {
    padding: 5rem 5%;
}

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

.values-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid #d4a574;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.value-card p {
    color: #5a5a5a;
    line-height: 1.6;
}

.team-section {
    padding: 5rem 5%;
    background: #f9f7f5;
}

.team-intro-offset {
    margin-bottom: 3rem;
}

.team-intro-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.team-intro-offset p {
    font-size: 1.1rem;
    color: #5a5a5a;
}

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

.team-member {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.member-info {
    padding: 1.8rem;
}

.member-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.member-role {
    color: #d4a574;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info p {
    color: #5a5a5a;
    line-height: 1.6;
}

.philosophy-asymmetric {
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.philosophy-lead {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
    font-weight: 500;
}

.philosophy-content p {
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.philosophy-image {
    width: 100%;
}

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

.cta-about {
    padding: 4rem 5%;
    background: #2c2c2c;
    text-align: center;
}

.cta-about-content {
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
}

.cta-about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-about-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #d0d0d0;
}

.cta-button-large {
    display: inline-block;
    background: #d4a574;
    color: #ffffff;
    padding: 1.2rem 3rem;
    font-weight: 600;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background: #c89560;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

/* Services Page Styles */
.services-hero-asymmetric {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f9f7f5 0%, #e8e4df 100%);
}

.services-hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.services-hero-text p {
    font-size: 1.3rem;
    color: #5a5a5a;
}

.services-category {
    padding: 4rem 5%;
}

.services-category:nth-child(even) {
    background: #f9f7f5;
}

.category-header-offset {
    max-width: 700px;
    margin-bottom: 3rem;
}

.category-header-offset h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.category-header-offset p {
    font-size: 1.1rem;
    color: #5a5a5a;
}

.services-list-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-item {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-visual {
    width: 100%;
}

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

.service-details {
    padding: 2rem;
}

.service-details h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-details p {
    margin-bottom: 1.5rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-duration {
    color: #7a7a7a;
    font-weight: 500;
}

.service-price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #d4a574;
}

.booking-cta-section {
    padding: 5rem 5%;
    background: #2c2c2c;
    text-align: center;
}

.booking-cta-content {
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
}

.booking-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.booking-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #d0d0d0;
}

/* Contact Page Styles */
.contact-hero {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f9f7f5 0%, #e8e4df 100%);
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-hero-content p {
    font-size: 1.3rem;
    color: #5a5a5a;
}

.contact-info-asymmetric {
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-main-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.info-detail {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

.info-detail a {
    color: #d4a574;
    text-decoration: underline;
}

.info-note {
    font-size: 0.95rem;
    color: #7a7a7a;
    margin-top: 0.5rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem;
    background: #f5f5f5;
    border-radius: 4px;
}

.day {
    font-weight: 600;
    color: #2c2c2c;
}

.time {
    color: #5a5a5a;
}

.contact-map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e8e4df 0%, #d4cfc7 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    max-width: 400px;
}

.map-overlay p {
    margin-bottom: 0.8rem;
    color: #2c2c2c;
    font-weight: 500;
}

.map-detail {
    color: #5a5a5a;
}

.contact-cta-section {
    padding: 4rem 5%;
    background: #f9f7f5;
    text-align: center;
}

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

.contact-cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #5a5a5a;
}

/* Thanks Page Styles */
.thanks-section {
    min-height: 70vh;
    padding: 5rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 600px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #5a5a5a;
}

.thanks-details {
    background: #f9f7f5;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.thanks-details p {
    margin-bottom: 0.8rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.thanks-details strong {
    color: #1a1a1a;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary-thanks {
    display: inline-block;
    background: #d4a574;
    color: #ffffff;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary-thanks:hover {
    background: #c89560;
}

.btn-secondary-thanks {
    display: inline-block;
    background: transparent;
    border: 2px solid #2c2c2c;
    color: #2c2c2c;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary-thanks:hover {
    background: #2c2c2c;
    color: #ffffff;
}

/* Legal Pages Styles */
.legal-page {
    padding: 4rem 5%;
    min-height: 70vh;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.legal-intro {
    color: #7a7a7a;
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    list-style: disc;
    margin-bottom: 0.6rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.legal-section strong {
    color: #1a1a1a;
    font-weight: 600;
}

.legal-actions {
    margin-top: 3rem;
    text-align: center;
}

.btn-back {
    display: inline-block;
    background: #d4a574;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: #c89560;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        gap: 2rem;
    }

    .nav-menu li {
        padding: 0;
        border-bottom: none;
    }

    .hero-asymmetric {
        flex-direction: row;
        align-items: center;
    }

    .hero-offset-left {
        width: 50%;
        padding: 3rem 5%;
    }

    .hero-image-offset {
        width: 50%;
        height: 85vh;
    }

    .intro-asymmetric {
        flex-direction: row;
    }

    .intro-left-narrow {
        width: 40%;
    }

    .intro-right-wide {
        width: 60%;
        padding-left: 3rem;
    }

    .services-grid-asymmetric {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card.card-large {
        width: 100%;
    }

    .service-card.card-offset,
    .service-card.card-small,
    .service-card.card-medium,
    .service-card.card-accent {
        width: calc(50% - 1rem);
    }

    .service-card.card-wide {
        width: 100%;
        display: flex;
        flex-direction: row-reverse;
    }

    .service-card.card-wide .service-content,
    .service-card.card-wide .service-image {
        width: 50%;
    }

    .service-card.card-wide .service-image img {
        height: 100%;
    }

    .testimonials-layout {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-block {
        width: calc(50% - 1rem);
    }

    .testimonial-block.block-middle {
        width: 100%;
    }

    .why-us-offset {
        flex-direction: row;
    }

    .why-us-image-left {
        width: 40%;
    }

    .why-us-content {
        width: 60%;
        padding-left: 3rem;
    }

    .page-header-asymmetric {
        flex-direction: row;
        align-items: center;
    }

    .header-content-offset {
        width: 50%;
    }

    .header-image-offset {
        width: 50%;
    }

    .about-story {
        flex-direction: row;
    }

    .story-block-left {
        width: 55%;
    }

    .story-image-right {
        width: 45%;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        width: calc(50% - 1rem);
    }

    .team-grid-asymmetric {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member.large-card {
        width: 100%;
        display: flex;
        flex-direction: row;
    }

    .team-member.large-card .member-image,
    .team-member.large-card .member-info {
        width: 50%;
    }

    .team-member.small-card,
    .team-member.medium-card {
        width: calc(50% - 1rem);
    }

    .philosophy-asymmetric {
        flex-direction: row;
    }

    .philosophy-content {
        width: 55%;
    }

    .philosophy-image {
        width: 45%;
    }

    .service-item.layout-wide,
    .service-item.layout-split {
        flex-direction: row;
    }

    .service-item.layout-narrow {
        flex-direction: row-reverse;
    }

    .service-item .service-visual,
    .service-item .service-details {
        width: 50%;
    }

    .service-visual img {
        height: 100%;
    }

    .contact-info-asymmetric {
        flex-direction: row;
    }

    .contact-main-info {
        width: 45%;
    }

    .contact-map-placeholder {
        width: 55%;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        width: 30%;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .sticky-content {
        justify-content: space-between;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-title-large {
        font-size: 3.5rem;
    }

    .section-title-offset {
        font-size: 2.8rem;
    }

    .services-grid-asymmetric {
        display: flex;
        flex-wrap: wrap;
    }

    .service-card.card-offset {
        width: calc(33.333% - 1.4rem);
    }

    .feature-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feature-item {
        width: calc(50% - 1rem);
    }

    .form-container-asymmetric {
        max-width: 600px;
        margin-left: 0;
    }
}