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

:root {
    --primary-color: #d4a574;
    --secondary-color: #8b6f47;
    --dark-color: #2c2c2c;
    --light-color: #f8f5f2;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

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

ul {
    list-style: none;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 14px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.btn-cookie.reject:hover {
    background: var(--white);
    color: var(--dark-color);
}

.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-card {
    background: var(--light-color);
    padding: 80px 0;
}

.hero-content-card {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text-block {
    flex: 1;
}

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

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

.hero-image-block {
    flex: 1;
}

.hero-image-block img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

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

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.cta-outline {
    display: inline-block;
    background: transparent;
    color: var(--text-dark);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 500;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.cta-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.cta-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 48px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.cta-large:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.intro-cards {
    padding: 80px 0;
    background: var(--white);
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    background: var(--light-color);
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

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

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

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

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

.why-choose-us {
    padding: 80px 0;
    background: var(--white);
}

.why-choose-us h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 60px;
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.feature-card-left,
.feature-card-right {
    display: flex;
    gap: 40px;
    align-items: center;
    background: var(--light-color);
    padding: 40px;
    border-radius: 16px;
}

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

.feature-card-left img,
.feature-card-right img {
    width: 45%;
    border-radius: 12px;
    object-fit: cover;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

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

.services-preview {
    padding: 80px 0;
    background: var(--light-color);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

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

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

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 48px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

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

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

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

.service-info {
    padding: 28px;
}

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

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

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

.btn-service {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.center-cta {
    text-align: center;
    margin-top: 40px;
}

.testimonials-section {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--dark-color);
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: var(--light-color);
    padding: 36px;
    border-radius: 12px;
    position: relative;
}

.quote-icon {
    font-size: 64px;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

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

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

.cta-banner {
    padding: 80px 0;
    background: var(--light-color);
}

.cta-content-card {
    background: var(--primary-color);
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    color: var(--white);
}

.cta-content-card h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

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

.cta-content-card .cta-large {
    background: var(--white);
    color: var(--primary-color);
}

.cta-content-card .cta-large:hover {
    background: var(--dark-color);
    color: var(--white);
}

.booking-section {
    padding: 80px 0;
    background: var(--white);
}

.form-card {
    background: var(--light-color);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

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

.form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-push {
    padding: 60px 0;
    background: var(--light-color);
}

.push-card {
    background: var(--white);
    padding: 48px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.push-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.push-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 28px;
}

.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

.footer-column p {
    line-height: 1.7;
    opacity: 0.85;
    font-size: 14px;
}

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

.footer-column ul li a {
    opacity: 0.85;
    font-size: 14px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    opacity: 0.7;
    font-size: 14px;
}

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

.sticky-btn {
    display: block;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(212, 165, 116, 0.5);
}

.page-hero {
    background: var(--light-color);
    padding: 80px 0 60px;
    text-align: center;
}

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

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

.about-story {
    padding: 80px 0;
    background: var(--white);
}

.story-card {
    background: var(--light-color);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 48px;
}

.story-card img {
    width: 100%;
    border-radius: 12px;
}

.story-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

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

.values-section {
    padding: 80px 0;
    background: var(--light-color);
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--dark-color);
}

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

.value-card {
    flex: 1;
    min-width: 260px;
    background: var(--white);
    padding: 36px 28px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.value-icon {
    font-size: 42px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

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

.team-section {
    padding: 80px 0;
    background: var(--white);
}

.team-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.team-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.team-card {
    flex: 1;
    min-width: 300px;
    background: var(--light-color);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
}

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

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

.team-card h3 {
    font-size: 24px;
    margin: 24px 20px 8px;
    color: var(--dark-color);
}

.team-role {
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.team-card p {
    padding: 0 24px 28px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.philosophy-card {
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.philosophy-card h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.philosophy-card p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.why-different {
    padding: 80px 0;
    background: var(--white);
}

.why-different h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.different-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.different-card {
    flex: 1;
    min-width: 260px;
    background: var(--light-color);
    padding: 32px 24px;
    border-radius: 10px;
}

.different-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

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

.cta-section {
    padding: 80px 0;
    background: var(--light-color);
}

.services-intro {
    padding: 60px 0;
    background: var(--white);
}

.intro-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-dark);
    text-align: center;
}

.services-detailed {
    padding: 80px 0;
    background: var(--light-color);
}

.service-detail-card {
    display: flex;
    gap: 48px;
    align-items: center;
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    margin-bottom: 48px;
    box-shadow: var(--shadow);
}

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

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

.service-detail-image img {
    border-radius: 12px;
}

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

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

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

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

.service-features {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 28px;
}

.service-features li {
    margin-bottom: 8px;
    color: var(--text-light);
    line-height: 1.6;
}

.products-section {
    padding: 80px 0;
    background: var(--white);
}

.products-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 32px;
    color: var(--dark-color);
}

.products-info p {
    text-align: center;
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.product-card {
    flex: 1;
    min-width: 280px;
    background: var(--light-color);
    padding: 32px;
    border-radius: 12px;
}

.product-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

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

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

.faq-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 48px;
    color: var(--dark-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: var(--white);
    padding: 28px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

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

.booking-cta {
    padding: 80px 0;
    background: var(--white);
}

.contact-main {
    padding: 80px 0;
    background: var(--white);
}

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

.contact-info-card {
    flex: 1;
    min-width: 320px;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

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

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

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

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

.contact-text a:hover {
    text-decoration: underline;
}

.map-card {
    flex: 1;
    min-width: 320px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.how-to-find {
    padding: 80px 0;
    background: var(--light-color);
}

.how-to-find h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 48px;
    color: var(--dark-color);
}

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

.direction-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.direction-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.direction-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

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

.visit-us {
    padding: 80px 0;
    background: var(--white);
}

.visit-content {
    display: flex;
    gap: 48px;
    align-items: center;
}

.visit-text {
    flex: 1;
}

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

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

.visit-image {
    flex: 1;
}

.visit-image img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.appointment-reminder {
    padding: 80px 0;
    background: var(--light-color);
}

.reminder-card {
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
}

.reminder-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

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

.opening-hours-detailed {
    padding: 80px 0;
    background: var(--white);
}

.opening-hours-detailed h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 48px;
    color: var(--dark-color);
}

.hours-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hours-card {
    flex: 1;
    min-width: 140px;
    background: var(--light-color);
    padding: 24px;
    border-radius: 10px;
    text-align: center;
}

.hours-card.closed {
    opacity: 0.6;
}

.hours-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 600;
}

.hours-card .hours {
    font-size: 15px;
    color: var(--text-light);
}

.hours-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.contact-faq {
    padding: 80px 0;
    background: var(--light-color);
}

.contact-faq h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 48px;
    color: var(--dark-color);
}

.final-cta-contact {
    padding: 80px 0;
    background: var(--white);
}

.thanks-section {
    padding: 100px 0;
    background: var(--light-color);
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

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

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

.thanks-message {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.service-confirmation {
    margin-bottom: 32px;
}

.service-selected {
    background: var(--light-color);
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    color: var(--text-dark);
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 32px;
    color: var(--dark-color);
}

.steps-grid {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 180px;
    background: var(--light-color);
    padding: 24px;
    border-radius: 10px;
}

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

.step-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.step-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

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

.thanks-note {
    background: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

.thanks-info {
    padding: 60px 0;
    background: var(--white);
}

.info-card-thanks {
    background: var(--light-color);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.info-card-thanks h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.info-card-thanks p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 28px;
}

.quick-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-link {
    padding: 12px 28px;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.legal-content {
    padding: 80px 0;
    background: var(--white);
}

.legal-card {
    background: var(--light-color);
    padding: 48px;
    border-radius: 12px;
}

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

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

.legal-card h2:first-of-type {
    margin-top: 0;
}

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

.legal-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.legal-card ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-card ul li {
    margin-bottom: 8px;
    color: var(--text-dark);
    line-height: 1.7;
}

.legal-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 2px solid var(--border-color);
    text-align: center;
}

.cookie-table {
    overflow-x: auto;
    margin: 24px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.cookie-table td {
    font-size: 14px;
    color: var(--text-dark);
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 16px;
    }

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

    .hero-text-block h1 {
        font-size: 36px;
    }

    .hero-content-card {
        flex-direction: column;
        gap: 40px;
    }

    .card-grid-3,
    .testimonial-cards {
        flex-direction: column;
    }

    .feature-card-left,
    .feature-card-right {
        flex-direction: column;
    }

    .feature-card-left img,
    .feature-card-right img {
        width: 100%;
    }

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

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

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

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

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

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

    .cta-content-card {
        padding: 40px 28px;
    }

    .form-card {
        padding: 32px 24px;
    }

    .thanks-card {
        padding: 40px 28px;
    }

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

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

    .page-hero h1 {
        font-size: 32px;
    }

    .section-header-center h2,
    .testimonials-section h2,
    .values-section h2,
    .team-section h2,
    .why-different h2,
    .products-section h2,
    .faq-section h2,
    .how-to-find h2,
    .opening-hours-detailed h2,
    .contact-faq h2 {
        font-size: 28px;
    }

    .cta-primary,
    .cta-secondary {
        padding: 14px 28px;
        font-size: 15px;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }
}