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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8e6c4f;
    --accent-color: #c9a980;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--accent-color);
    color: var(--text-dark);
}

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

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

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

.floating-nav {
    position: fixed;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: none;
    gap: 2rem;
}

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

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary-color);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-asymmetric {
    min-height: 100vh;
    padding: 8rem 1.5rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.hero-text-block {
    flex: 1;
    padding: 2rem 0;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 500px;
}

.hero-image-block {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-image-block img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.cta-floating {
    position: absolute;
    bottom: 2rem;
    right: 1.5rem;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(142, 108, 79, 0.3);
    transition: all 0.3s ease;
}

.cta-floating:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(142, 108, 79, 0.4);
}

.intro-offset {
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.intro-narrow {
    max-width: 600px;
}

.intro-narrow h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-narrow p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

.intro-wide-image img {
    width: 100%;
    border-radius: 8px;
}

.story-section {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.story-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.story-text p {
    color: var(--text-light);
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
}

.problem-amplify {
    padding: 5rem 1.5rem;
    background: var(--primary-color);
    color: white;
}

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

.problem-header h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.problem-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.problem-item p {
    font-size: 1.125rem;
}

.cta-inline {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    margin: 0 auto;
    display: block;
    width: fit-content;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: white;
    transform: scale(1.05);
}

.insight-section {
    padding: 5rem 1.5rem;
    display: flex;
    justify-content: center;
}

.insight-box {
    max-width: 700px;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.insight-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.insight-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.insight-box p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.services-preview {
    padding: 5rem 1.5rem;
}

.services-header-offset {
    margin-bottom: 3rem;
}

.services-header-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.services-header-offset p {
    font-size: 1.125rem;
    color: var(--text-light);
}

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

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-card.large .service-image,
.service-card.medium .service-image {
    height: 300px;
    overflow: hidden;
}

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

.service-content {
    padding: 2rem;
}

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

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.testimonials-scattered {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

.testimonials-scattered h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.testimonial-group {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial cite {
    font-style: normal;
    color: var(--text-light);
    font-weight: 500;
}

.form-section {
    padding: 5rem 1.5rem;
}

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

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

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    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(--secondary-color);
}

.btn-submit {
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.urgency-section {
    padding: 3rem 1.5rem;
    background: var(--accent-color);
}

.urgency-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.urgency-box p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cta-urgent {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-urgent:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.footer-asymmetric {
    background: var(--primary-color);
    color: white;
    padding: 4rem 1.5rem 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

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

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

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

.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);
    color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta a {
    display: block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(142, 108, 79, 0.4);
    transition: all 0.3s ease;
}

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

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 4rem;
}

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

.thanks-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 1.5rem;
}

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

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

.selected-service {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    font-weight: 600;
    color: var(--secondary-color);
}

.thanks-next {
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.about-hero,
.services-hero,
.contact-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 4rem;
    background: var(--bg-light);
}

.about-hero-content,
.services-hero-text,
.contact-hero-content {
    max-width: 800px;
    text-align: center;
}

.about-hero-content h1,
.services-hero-text h1,
.contact-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-hero-content p,
.services-hero-text p,
.contact-hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.about-story {
    padding: 5rem 1.5rem;
}

.story-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.story-text-main h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-text-main p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.story-image-offset img {
    width: 100%;
    border-radius: 8px;
}

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

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

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

.philosophy-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

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

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

.team-section {
    padding: 5rem 1.5rem;
}

.team-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.team-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.team-image {
    height: 350px;
    overflow: hidden;
}

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

.team-info {
    padding: 2rem;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.team-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.values-section {
    padding: 5rem 1.5rem;
    background: var(--primary-color);
    color: white;
}

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

.values-content h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.value-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.value-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
}

.value-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.value-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.cta-section-about,
.cta-section-contact {
    padding: 5rem 1.5rem;
}

.cta-box-offset,
.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 8px;
}

.cta-box-offset h2,
.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-box-offset p,
.cta-box p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

.services-detailed {
    padding: 3rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid var(--border-color);
}

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

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

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

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

.service-includes {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-includes li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-duration {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.btn-service {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
}

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

.package-highlight {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
}

.package-highlight h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.package-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-old {
    font-size: 1.25rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-right: 1rem;
}

.price-new {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.package-description {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.package-includes {
    margin-bottom: 2rem;
}

.package-includes h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.package-includes ul {
    list-style: none;
}

.package-includes li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.package-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.package-savings {
    text-align: center;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

.btn-package {
    display: block;
    background: var(--secondary-color);
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-package:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

.booking-section {
    padding: 5rem 1.5rem;
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
}

.booking-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.booking-container > p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.contact-info-section {
    padding: 4rem 1.5rem;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

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

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

.note {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.contact-image img {
    width: 100%;
    border-radius: 8px;
}

.location-section {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.location-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.transport-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.transport-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.transport-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.parking-note {
    font-style: italic;
    color: var(--text-light);
}

.faq-section {
    padding: 5rem 1.5rem;
}

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

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.legal-page {
    padding: 8rem 1.5rem 4rem;
    min-height: 100vh;
}

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

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

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

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

.legal-container h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

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

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.7;
}

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

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

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

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

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-asymmetric {
        flex-direction: row;
        align-items: center;
        padding: 8rem 3rem 4rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-image-block {
        position: absolute;
        right: 3rem;
        top: 50%;
        transform: translateY(-50%);
        width: 45%;
        max-width: 600px;
    }

    .intro-offset {
        padding: 6rem 3rem;
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .intro-narrow {
        flex: 1;
    }

    .intro-wide-image {
        flex: 1;
    }

    .story-card {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .story-card.right {
        flex-direction: row-reverse;
    }

    .story-card.left .story-text,
    .story-card.right .story-text {
        flex: 1;
    }

    .story-card.left .story-image,
    .story-card.right .story-image {
        flex: 1;
    }

    .problem-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .services-asymmetric {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 2rem;
    }

    .service-card.large {
        grid-column: span 8;
        flex-direction: row;
    }

    .service-card.medium {
        grid-column: span 6;
        flex-direction: row;
    }

    .service-card.small {
        grid-column: span 4;
    }

    .testimonial.left-offset {
        margin-left: 0;
        margin-right: auto;
        max-width: 70%;
    }

    .testimonial.right-offset {
        margin-left: auto;
        margin-right: 0;
        max-width: 70%;
    }

    .testimonial.center-offset {
        margin-left: auto;
        margin-right: auto;
        max-width: 80%;
    }

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

    .story-layout {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .story-text-main {
        flex: 1;
    }

    .story-image-offset {
        flex: 1;
    }

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

    .team-grid-asymmetric {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 2rem;
    }

    .team-member.large {
        grid-column: span 8;
        flex-direction: row;
    }

    .team-member.large .team-image {
        flex: 1;
        height: auto;
    }

    .team-member.large .team-info {
        flex: 1;
    }

    .team-member.small {
        grid-column: span 4;
    }

    .service-detail-item.left-align {
        flex-direction: row;
        align-items: center;
    }

    .service-detail-item.right-align {
        flex-direction: row-reverse;
        align-items: center;
    }

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

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

    .contact-layout {
        flex-direction: row;
        gap: 4rem;
    }

    .contact-details {
        flex: 1;
    }

    .contact-image {
        flex: 1;
    }

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

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .floating-nav {
        left: 4rem;
        right: 4rem;
    }

    .hero-asymmetric {
        padding: 8rem 4rem 4rem;
    }

    .hero-title {
        font-size: 4rem;
    }
}
