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

:root {
    --primary-color: #d4a373;
    --secondary-color: #2c2c2c;
    --accent-color: #b8956a;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #faf8f6;
    --bg-white: #ffffff;
    --border-color: #e8e4df;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

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

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

.main-nav {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

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

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

.hero-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #faf8f6 0%, #f0ece8 100%);
}

.hero-card {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    align-items: center;
    background-color: var(--bg-white);
    padding: 56px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

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

.hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.intro-cards {
    padding: 80px 20px;
}

.card-grid {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.services-showcase {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.section-header-card {
    text-align: center;
    margin-bottom: 56px;
    background-color: var(--bg-light);
    padding: 48px 32px;
    border-radius: 12px;
}

.section-header-card h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-header-card p {
    font-size: 18px;
    color: var(--text-light);
}

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

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

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

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

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

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

.service-details {
    padding: 32px;
}

.service-details h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-details p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.service-features span {
    background-color: var(--bg-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-dark);
}

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

.btn-select-service {
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.testimonials-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
}

.testimonials-title {
    text-align: center;
    font-size: 36px;
    color: var(--bg-white);
    margin-bottom: 48px;
}

.testimonials-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255,255,255,0.08);
    padding: 36px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.stars {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--bg-light);
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.7;
}

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

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

.booking-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 56px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.booking-card h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.booking-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 16px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    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);
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

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

.why-choose {
    padding: 80px 20px;
}

.why-cards {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.why-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--text-dark);
}

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

.main-footer {
    background-color: var(--secondary-color);
    color: var(--bg-light);
    padding: 56px 20px 28px;
}

.footer-content {
    display: flex;
    gap: 56px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    color: #bbb;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(28, 28, 28, 0.97);
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    color: #eee;
    margin: 0;
    flex: 1;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.btn-reject {
    background-color: transparent;
    color: #bbb;
    border: 2px solid #555;
}

.btn-reject:hover {
    border-color: #888;
    color: #eee;
}

.sticky-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
}

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 80px 20px;
    text-align: center;
    color: var(--bg-white);
}

.page-hero h1 {
    font-size: 44px;
    margin-bottom: 16px;
}

.about-intro {
    padding: 80px 20px;
}

.about-card-main {
    display: flex;
    gap: 48px;
    align-items: center;
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.about-image-wrapper {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.philosophy-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.philosophy-card {
    flex: 1 1 calc(50% - 14px);
    min-width: 300px;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.card-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--border-color);
    margin-bottom: 16px;
}

.philosophy-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.experience-section {
    padding: 80px 20px;
}

.experience-grid {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.exp-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.exp-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.exp-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.exp-card p {
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.6;
}

.values-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.section-title-center {
    text-align: center;
    font-size: 36px;
    margin-bottom: 56px;
    color: var(--text-dark);
}

.values-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    display: flex;
    gap: 24px;
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 12px;
}

.value-icon {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 700;
}

.value-text h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.cta-section {
    padding: 80px 20px;
}

.cta-card-large {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    padding: 64px 48px;
    border-radius: 16px;
    text-align: center;
    color: var(--bg-white);
}

.cta-card-large h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-card-large p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 32px;
}

.services-detail-section {
    padding: 80px 20px;
}

.service-detail-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 48px;
}

.service-detail-header {
    display: flex;
    gap: 0;
}

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

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

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

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

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

.service-lead {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.7;
}

.service-detail-content {
    padding: 48px;
}

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

.service-includes {
    list-style: none;
    margin-bottom: 24px;
}

.service-includes li {
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.service-detail-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 28px;
}

.btn-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

.additional-info {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.info-cards-horizontal {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.info-card-horizontal {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.info-card-horizontal h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--text-dark);
}

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

.contact-section {
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 320px;
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-info-card h2 {
    font-size: 32px;
    margin-bottom: 36px;
    color: var(--text-dark);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    font-size: 32px;
}

.contact-details h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

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

.contact-note {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.contact-note h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-note p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-map-card {
    flex: 1;
    min-width: 320px;
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-map-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.map-placeholder {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 24px;
    color: var(--bg-white);
}

.map-overlay p {
    margin: 0;
    color: var(--bg-white);
}

.map-address {
    font-size: 14px;
    color: #ddd;
}

.location-description {
    color: var(--text-light);
    line-height: 1.7;
}

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

.faq-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.faq-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 300px;
    background-color: var(--bg-white);
    padding: 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.faq-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

.thanks-section {
    padding: 80px 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 64px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

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

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

.service-summary {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.selected-service-box {
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.selected-service-box h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.service-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.thanks-info h3 {
    font-size: 24px;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: center;
    text-align: left;
}

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

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

.thanks-note {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-note h4 {
    font-size: 18px;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.thanks-note p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 10px;
    font-size: 15px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--text-dark);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

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

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

.social-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.social-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.social-card p {
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.7;
}

.social-note {
    margin-top: 24px;
}

.social-note p {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.legal-page {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 56px;
    border-radius: 16px;
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.update-date {
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 28px;
}

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

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background-color: var(--bg-white);
}

.cookies-table thead {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

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

.cookies-table th {
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .hero-card {
        flex-direction: column;
        padding: 32px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .nav-links {
        gap: 20px;
    }

    .card-grid,
    .services-grid,
    .testimonials-cards,
    .why-cards,
    .philosophy-cards,
    .experience-grid {
        flex-direction: column;
    }

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

    .about-card-main {
        flex-direction: column;
        padding: 28px;
    }

    .service-detail-header {
        flex-direction: column;
    }

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

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

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

    .booking-card {
        padding: 32px;
    }

    .legal-content {
        padding: 32px;
    }

    .thanks-card {
        padding: 32px;
    }

    .cookies-table {
        font-size: 13px;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 10px;
    }
}
