/* CSS Variables for consistent theming */
:root {
    --color-primary: #8ACBC1;
    --color-primary-dark: #6ba8a0;
    --color-text: #333;
    --color-text-dark: #272727;
    --color-white: #fff;
    --color-bg: #fefefe;
    --color-bg-light: #f8f9fa;
    --color-border: #ddd;
    --transition-base: 0.3s;
    --border-radius: 4px;
}

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

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

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

/* Header */
header {
    background-color: var(--color-white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    flex-wrap: wrap;
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    transition: color var(--transition-base);
}

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

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: var(--border-radius);
    min-width: 200px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateY(-10px);
}

.dropdown-menu.open {
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--color-text);
}

.dropdown-menu a:hover {
    background-color: #f0f0f0;
    color: var(--color-primary);
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    z-index: 1002;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #272727;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Base button styles - shared properties */
.btn-appointment,
.btn-appointment-footer {
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: background-color var(--transition-base);
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 500;
}

.btn-appointment {
    padding: 0.5rem 1rem;
}

.btn-appointment-footer {
    display: block;
    text-align: center;
    padding: 0.75rem 2rem;
    max-width: 300px;
    margin: 2rem auto 0;
}

.contact-section .btn-appointment-footer {
    grid-column: 1 / -1;
}

.btn-appointment:hover,
.btn-appointment-footer:hover {
    background-color: var(--color-primary-dark);
}

.phone {
    font-weight: bold;
}

.phone a {
    color: var(--color-text-dark);
    text-decoration: none;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: transparent;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-text-dark);
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: var(--color-text-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    border: none;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-text-dark);
}

.btn-primary {
    background-color: transparent;
    color: var(--color-text-dark);
    padding: 0.75rem 2rem;
    border: 2px solid var(--color-text-dark);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background-color var(--transition-base), color var(--transition-base);
}

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

/* Appointment Section */
.appointment-section {
    background-color: #fff;
    padding: 3rem 0;
    margin: 2rem 0;
}

.appointment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.appointment-text h3 {
    color: #272727;
    margin-bottom: 1rem;
}

.appointment-text a {
    color: #8ACBC1;
    text-decoration: none;
}

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

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group input {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: #8ACBC1;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    font-size: 0.9rem;
}

.checkbox-group a {
    color: #8ACBC1;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.btn-submit {
    background-color: #8ACBC1;
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #6ba8a0;
}

.form-message {
    padding: 0.75rem;
    border-radius: 4px;
    margin-top: 0.5rem;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Services Section */
.services-section {
    padding: 3rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.service-card-wrapper {
    display: flex;
    flex-direction: column;
}

.service-card {
    background: #fff;
    padding: 0;
    border-radius: 8px;
    text-align: center;
    color: #333;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

.service-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    padding: 1.5rem;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.service-card h4 {
    color: #272727;
    margin: 0;
    flex: 1;
}

/* Expand icon - only for pricing sections */
.pricing-header .expand-icon {
    position: static;
    font-size: 1.5rem;
    font-weight: bold;
    color: #8ACBC1;
    transition: all 0.3s;
    margin-left: 1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #8ACBC1;
    border-radius: 50%;
    line-height: 1;
    flex-shrink: 0;
    transform: none;
    right: auto;
    top: auto;
}

.service-content-expand {
    padding: 1.5rem;
    margin-top: 0;
    text-align: left;
    display: block;
    border-top: 1px solid #f0f0f0;
}

.service-content-expand p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #666;
    font-size: 0.95rem;
}

.btn-service-link {
    display: inline-block;
    color: #8ACBC1;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    border: 2px solid #8ACBC1;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-service-link:hover {
    color: #fff;
    background-color: #8ACBC1;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(138, 203, 193, 0.3);
}

/* Carousel */
.carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    display: none;
}

.carousel-item.active {
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(138, 203, 193, 0.8);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.carousel-btn:hover {
    background: rgba(138, 203, 193, 1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #8ACBC1;
}

/* About Section */
.about-section {
    padding: 3rem 0;
    background-color: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    text-align: center;
}

.image-placeholder {
    font-size: 8rem;
    opacity: 0.3;
}

.about-text h2 {
    color: #272727;
    margin-bottom: 1rem;
    border-bottom: 2px solid #8ACBC1;
}

.btn-link {
    color: #8ACBC1;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

.btn-link:hover {
    color: #6ba8a0;
    text-decoration: underline;
}

/* Testimonials Section */
.testimonials-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.testimonial-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card h6 {
    color: #272727;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    color: #666;
}

/* Team Section */
.team-section {
    padding: 3rem 0;
    background-color: #fff;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.team-member {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    color: #272727;
    margin-bottom: 0.5rem;
}

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

.member-specialty {
    color: #999;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: #8ACBC1;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

footer h3 {
    color: #fff;
    margin-bottom: 2rem;
    border: none;
    text-align: center;
}

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

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    flex-wrap: nowrap;
    flex: 0 1 auto;
    min-width: 0;
}

.contact-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #fff;
    margin-top: 0.25rem;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

footer .contact-item {
    margin-bottom: 1rem;
}

footer .contact-item > div:not(.contact-icon) {
    flex: 1;
    line-height: 1.6;
}

footer .contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}

footer .contact-item a {
    color: #fff;
    text-decoration: none;
    display: block;
    line-height: 1.6;
    word-break: break-word;
}

footer .contact-item a:hover {
    text-decoration: underline;
    opacity: 0.9;
}

footer .contact-item p {
    margin: 0.25rem 0;
    color: #fff;
    line-height: 1.5;
}

footer .contact-item > div:not(.contact-icon) > div {
    margin-top: 0.5rem;
}

footer .contact-item > div:not(.contact-icon) > div > div {
    margin-top: 0.25rem;
    font-size: 0.9em;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
}


/* Contact section styles */
.contact-section .contact-item {
    color: #333;
}

.contact-section .contact-item a {
    color: #333;
    text-decoration: none;
    word-break: break-word;
    display: inline;
    hyphens: auto;
}

.contact-section .contact-item a:hover {
    text-decoration: underline;
    color: #8ACBC1;
}

.contact-section .contact-item p {
    margin: 0.25rem 0;
    white-space: normal;
    line-height: 1.4;
}

.contact-section .contact-item > div:not(.contact-icon) {
    white-space: normal;
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
}

.contact-section .contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #272727;
    font-weight: 600;
}

.contact-section .contact-icon {
    color: #8ACBC1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #fff;
    border-radius: 4px;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.social-link svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.social-link span {
    display: none;
}

.social-link:hover {
    background-color: rgba(255,255,255,0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 2rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #fff;
    text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.9);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

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

.btn-cookie {
    background-color: #8ACBC1;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.3s;
}

.btn-cookie:hover {
    background-color: #6ba8a0;
}

/* Pricing Page Styles */
main {
    padding: 2rem 0;
    min-height: calc(100vh - 300px);
}

h1 {
    color: #272727;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

h2 {
    color: #272727;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
    border-bottom: 2px solid #8ACBC1;
    padding-bottom: 0.5rem;
}

/* Pricing Category Expand/Collapse */
.pricing-category {
    margin-bottom: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.pricing-header {
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    margin: 0;
    background: #f8f9fa;
    transition: background-color 0.3s;
    border-bottom: 2px solid #8ACBC1;
}

.pricing-header:hover {
    background: #e9ecef;
}

.pricing-header .expand-icon {
    position: static;
    font-size: 1.5rem;
    font-weight: bold;
    color: #8ACBC1;
    transition: all 0.3s;
    margin-left: 1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #8ACBC1;
    border-radius: 50%;
    line-height: 1;
    flex-shrink: 0;
    transform: none;
    right: auto;
    top: auto;
}

.pricing-header .expand-icon::before {
    content: '+';
}

.pricing-category.expanded .pricing-header .expand-icon::before {
    content: '-';
}

.pricing-category .pricing-section {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0;
    margin: 0;
}

.pricing-category.expanded .pricing-section {
    max-height: 10000px;
    padding: 1.5rem;
    margin: 0;
}

h3 {
    color: #555;
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
}

h4 {
    color: #666;
    margin: 1rem 0 0.5rem;
    font-size: 1.2rem;
}

h6 {
    color: #272727;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.pricing-section {
    margin-bottom: 2rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: #fff;
}

table thead {
    background-color: #8ACBC1;
    color: #fff;
}

table th,
table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table th {
    font-weight: 600;
}

table tbody tr:hover {
    background-color: #f8f9fa;
}

table tbody tr:last-child td {
    border-bottom: none;
}

.note {
    margin-top: 1rem;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

/* Service Detail Page */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin: 2rem 0;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-image {
    text-align: center;
    margin: 0;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    width: 100%;
}

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

.service-image .image-placeholder {
    font-size: 8rem;
    opacity: 0.3;
}

.service-content h5 {
    color: #272727;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    border-bottom: 2px solid #8ACBC1;
    padding-bottom: 0.5rem;
}

.service-content h5:first-child {
    margin-top: 0;
}

.service-content p {
    margin: 1rem 0;
    line-height: 1.8;
}

.service-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.service-content li {
    margin: 0.5rem 0;
    line-height: 1.8;
}

.service-content strong {
    color: #272727;
    font-weight: 600;
}

/* Contact Page */
.contact-section {
    margin: 3rem 0;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    grid-column: 1 / -1;
}

.map-container {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 100%;
    min-height: 400px;
}

.map-container iframe {
    display: block;
    width: 100%;
    border: none;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social .social-link {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #fff;
    border-radius: 4px;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-social .social-link svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.footer-social .social-link span {
    display: none;
}

.footer-social .social-link:hover {
    background-color: rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    /* Header Mobile */
    header .container {
        flex-wrap: nowrap;
        padding: 0.75rem 15px;
    }

    .logo-img {
        max-height: 40px;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
        padding-top: 60px;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem 0;
    }

    .main-nav li {
        border-bottom: 1px solid #f0f0f0;
    }

    .main-nav a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 44px; /* Touch target size */
        display: flex;
        align-items: center;
    }

    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: #f8f8f8;
        margin: 0;
        padding: 0;
        opacity: 1;
        transform: none;
        transition: none;
    }

    .dropdown-menu.open {
        display: block !important;
    }
    
    .dropdown-menu[style*="block"] {
        display: block !important;
    }

    .dropdown-menu a {
        padding: 0.75rem 2rem;
        font-size: 0.95rem;
    }

    .header-actions {
        display: none;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 3rem 0;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .btn-primary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-height: 44px;
    }

    /* Container Mobile */
    .container {
        padding: 0 15px;
    }

    /* Appointment Section Mobile */
    .appointment-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .appointment-form {
        padding: 1.5rem;
    }

    .appointment-form input,
    .appointment-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.875rem;
        min-height: 44px;
    }

    .btn-submit {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-height: 44px;
        width: 100%;
    }

    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-image img {
        width: 100%;
    }

    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 0;
    }

    .service-header {
        padding: 1rem;
        min-height: 44px;
    }

    .service-content-expand {
        padding: 1rem;
        border-top: 1px solid #f0f0f0;
    }
    
    .service-content-expand p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }

    /* Team Mobile */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Contact Mobile */
    .contact-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        gap: 1.5rem;
    }

    .map-container {
        height: 300px;
    }

    .map-container iframe {
        height: 100%;
    }

    /* Footer Mobile */
    footer {
        padding: 2rem 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Cookie Banner Mobile */
    .cookie-banner {
        padding: 1rem;
        bottom: 0;
        left: 0;
        right: 0;
    }

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

    .btn-cookie {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-height: 44px;
        width: 100%;
    }

    /* Typography Mobile */
    h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.25rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    /* Tables Mobile */
    table {
        font-size: 0.85rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    table th,
    table td {
        padding: 0.75rem 0.5rem;
        white-space: nowrap;
    }

    /* Service Detail Mobile */
    .service-detail {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Pricing Mobile */
    .pricing-header {
        padding: 1rem;
        font-size: 1rem;
        min-height: 44px;
    }

    .pricing-section {
        padding: 0 1rem 1rem;
    }

    /* Buttons Mobile - Touch Friendly */
    a, button {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .btn-link,
    .btn-service-link {
        padding: 0.75rem 1rem;
        min-height: 44px;
        width: 100%;
        text-align: center;
        display: block;
    }

    /* Testimonials Mobile */
    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-avatar img,
    .member-avatar img {
        width: 80px;
        height: 80px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .main-nav {
        width: 85%;
    }

    .logo-img {
        max-height: 35px;
    }
}

/* Policy Pages Styles */
.policy-nav {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.policy-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.policy-nav li {
    margin: 0;
}

.policy-nav a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem;
    display: block;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.policy-nav a:hover {
    background-color: #8ACBC1;
    color: #fff;
}

.policy-content {
    line-height: 1.8;
}

.policy-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    scroll-margin-top: 100px;
}

.policy-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
}

.policy-content p {
    margin-bottom: 1rem;
    text-align: justify;
}

.policy-content ul,
.policy-content ol {
    margin: 1rem 0 1rem 2rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-content a {
    color: #8ACBC1;
    text-decoration: underline;
}

.policy-content a:hover {
    color: #6ba8a0;
}

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

.policy-content table th,
.policy-content table td {
    padding: 0.75rem;
    border: 1px solid #ddd;
    text-align: left;
}

.policy-content table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.policy-content table tr:nth-child(even) {
    background-color: #f9f9f9;
}

@media (max-width: 768px) {
    .policy-nav {
        padding: 1rem;
    }
    
    .policy-nav ul {
        gap: 0.5rem;
    }
    
    .policy-content {
        font-size: 0.95rem;
    }
    
    .policy-content h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
    
    .policy-content table {
        font-size: 0.85rem;
    }
    
    .policy-content table th,
    .policy-content table td {
        padding: 0.5rem;
    }
}
