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

:root {
    --primary-color: #d4a574;
    --secondary-color: #2c2c2c;
    --accent-color: #b8956a;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #faf8f5;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
    --success-color: #4CAF50;
    --transition: all 0.3s ease;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

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

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

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

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

.main-nav {
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: var(--bg-light);
}

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

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

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-right {
    flex: 1;
    background: var(--border-color);
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.cta-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212,165,116,0.3);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 16px 36px;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

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

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

.intro-split.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    background: var(--border-color);
    overflow: hidden;
}

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

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

.split-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--secondary-color);
    font-weight: 700;
}

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.services-highlight {
    padding: 100px 20px;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

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

.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

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

.service-image {
    height: 220px;
    background: var(--border-color);
    overflow: hidden;
}

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

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

.service-info {
    padding: 28px;
}

.service-info h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

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

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

.select-service {
    width: 100%;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 14px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

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

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

.features-list {
    margin-top: 32px;
    margin-bottom: 40px;
}

.feature-item {
    margin-bottom: 28px;
}

.feature-item h4 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.testimonials-section {
    padding: 100px 20px;
    background: var(--bg-white);
    text-align: center;
}

.testimonials-section h2 {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.testimonial {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 400px;
    padding: 40px 32px;
    background: var(--bg-light);
    border-radius: 8px;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial .author {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

.cta-full-section {
    padding: 120px 20px;
    background: var(--secondary-color);
    text-align: center;
    color: var(--bg-white);
}

.cta-content h2 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 19px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 20px 48px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: var(--transition);
}

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

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

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.booking-info {
    flex: 1;
}

.booking-info h2 {
    font-size: 38px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.booking-info p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
}

.booking-benefits p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.booking-form {
    flex: 1;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212,165,116,0.1);
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

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

.main-footer {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 40px;
}

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

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.8;
}

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

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

.footer-section ul li a {
    font-size: 15px;
    opacity: 0.8;
    transition: var(--transition);
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

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

.sticky-btn {
    display: block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(212,165,116,0.4);
    transition: var(--transition);
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212,165,116,0.5);
}

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

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: var(--bg-light);
}

.hero-content-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 700;
}

.hero-content-left p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
}

.hero-image-right {
    flex: 1;
    background: var(--border-color);
    overflow: hidden;
}

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

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

.story-split.reverse {
    flex-direction: row-reverse;
}

.values-section {
    padding: 100px 20px;
    background: var(--bg-white);
    text-align: center;
}

.values-section h2 {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 60px;
    font-weight: 700;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    max-width: 500px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: left;
}

.value-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

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

.commitment-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.commitment-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.commitment-content h2 {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 60px;
    font-weight: 700;
}

.commitment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    text-align: left;
}

.commitment-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

.commitment-item h4 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.commitment-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

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

.cta-about-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-about-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.page-hero {
    padding: 100px 20px;
    background: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.page-hero p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--border-color);
}

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

.detail-image {
    flex: 1;
    background: var(--border-color);
    overflow: hidden;
}

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

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

.detail-content h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

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

.service-features li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

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

.price-display {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.services-cta {
    padding: 100px 20px;
    background: var(--bg-light);
    text-align: center;
}

.services-cta h2 {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.services-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-hero {
    padding: 100px 20px;
    background: var(--bg-light);
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-hero p {
    font-size: 20px;
    color: var(--text-light);
}

.contact-split {
    display: flex;
    gap: 60px;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 40px;
    font-weight: 700;
}

.info-item {
    margin-bottom: 36px;
}

.info-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.info-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.info-item a {
    color: var(--primary-color);
}

.info-item a:hover {
    text-decoration: underline;
}

.info-note {
    padding: 24px;
    background: var(--bg-light);
    border-radius: 8px;
    margin-top: 32px;
}

.info-note p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    border-radius: 8px;
    margin-bottom: 32px;
}

.location-details {
    padding: 32px;
    background: var(--bg-light);
    border-radius: 8px;
}

.location-details h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.location-details p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.location-details ul {
    list-style: none;
}

.location-details ul li {
    font-size: 15px;
    color: var(--text-dark);
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.location-details ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.faq-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.faq-section h2 {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

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

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

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

.contact-cta h2 {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.thanks-section {
    padding: 120px 20px;
    background: var(--bg-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

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

.thanks-details {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.thanks-details h2 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.next-steps {
    list-style: none;
    text-align: left;
}

.next-steps li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

.next-steps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.selected-service-info {
    padding: 16px;
    background: var(--bg-light);
    border-radius: 6px;
    margin-bottom: 24px;
    font-size: 16px;
    color: var(--text-dark);
}

.thanks-info {
    margin-bottom: 40px;
}

.thanks-info p {
    font-size: 15px;
    color: var(--text-light);
}

.thanks-info a {
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-info a:hover {
    text-decoration: underline;
}

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

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

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

.legal-container h1 {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.last-update {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-top: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-container h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

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

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
}

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

.legal-container a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table thead {
    background: var(--bg-light);
}

.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--border-color);
    font-size: 14px;
}

.cookie-table th {
    font-weight: 700;
    color: var(--secondary-color);
}

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        transition: var(--transition);
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-split,
    .intro-split,
    .experience-split,
    .page-hero-split,
    .story-split,
    .team-split,
    .service-detail-split {
        flex-direction: column;
    }

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

    .hero-left,
    .split-content,
    .hero-content-left,
    .detail-content {
        padding: 60px 30px;
    }

    .hero-right,
    .split-image,
    .hero-image-right,
    .detail-image {
        min-height: 300px;
    }

    .hero-content h1,
    .hero-content-left h1,
    .page-hero h1,
    .contact-hero h1 {
        font-size: 36px;
    }

    .split-content h2,
    .detail-content h2 {
        font-size: 28px;
    }

    .section-header h2,
    .values-section h2,
    .commitment-content h2,
    .faq-section h2 {
        font-size: 32px;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
    }

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

    .sticky-btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    .thanks-container h1 {
        font-size: 32px;
    }

    .thanks-details {
        padding: 28px 24px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .legal-container h1 {
        font-size: 32px;
    }

    .legal-container h2 {
        font-size: 24px;
    }

    .cookie-table {
        font-size: 12px;
    }

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

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

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

    .cta-content h2 {
        font-size: 32px;
    }

    .value-card,
    .commitment-item {
        min-width: 100%;
    }
}