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

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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a90a4;
    --accent-color: #7fb3d5;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-width: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.nav {
    padding: 1rem 0;
}

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

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.5rem 0;
    position: relative;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

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

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

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.section {
    padding: 80px 20px;
    width: 100%;
    max-width: 100vw;
}

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

.card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.card p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.services {
    background: var(--bg-light);
}

.about {
    background: var(--bg-white);
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.contact {
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 3rem;
    width: 100%;
}

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

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

.contact-tagline {
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item .icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

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

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

.footer {
    background: var(--text-dark);
    color: white;
    text-align: center;
    padding: 2rem 20px;
}

.footer p {
    opacity: 0.8;
}

.learn-more {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    transform: translateX(5px);
}

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

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

.services-page {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    width: 100%;
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.coming-soon {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cta-section {
    text-align: center;
    padding: 3rem;
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.cta-section p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.about-page {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    width: 100%;
}

.about-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.about-card h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact-page {
    background: var(--bg-light);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 3rem;
    width: 100%;
}

.contact-info-box,
.contact-form-box {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-info-box h2,
.contact-form-box h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.booking-note {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--bg-light);
}

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

.booking-note p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

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

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

.required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    width: 100%;
    max-width: 100%;
}

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

.form-group textarea {
    resize: vertical;
}

.submit-button {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
    background: #d4edda;
    border: 2px solid #c3e6cb;
    border-radius: 10px;
    margin-top: 2rem;
}

.form-success.show {
    display: block;
}

.form-success h3 {
    color: #155724;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: #155724;
}

@media (max-width: 1024px) {
    .hero-home {
        padding: 3rem 1.5rem;
    }

    .info-card {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .info-card:last-child {
        border-bottom: none;
    }

    .service-item,
    .service-item-reverse {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .service-item .service-image,
    .service-item-reverse .service-image {
        order: 1 !important;
    }

    .service-item .service-content,
    .service-item-reverse .service-content {
        order: 2 !important;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        top: 1rem;
        right: 1rem;
        z-index: 1001;
    }

    .mobile-menu-toggle span {
        background: var(--primary-color);
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
    }

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

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
    }

    .header-home {
        padding: 1rem 0 0 0;
    }

    .logo-container {
        padding: 0.5rem 1rem;
    }

    .site-logo {
        width: 200px;
        max-width: 80%;
    }

    .nav-menu-home {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #1a7a8e;
        flex-direction: column;
        padding: 5rem 2rem 2rem 2rem;
        gap: 0;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

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

    .nav-menu-home li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-link-home {
        padding: 1.25rem 0;
        font-size: 1rem;
    }

    .hero {
        padding: 60px 20px;
    }

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

    .hero-text {
        font-size: 1rem;
    }

    .hero-home {
        padding: 2rem 1rem;
    }

    .hero-home-content h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-home-content p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-images {
        gap: 1rem;
    }

    .hero-image {
        width: 200px;
        height: 200px;
    }

    .hero-image-single {
        max-width: 100%;
        height: auto;
    }

    .info-card {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 2rem 1.5rem;
    }

    .info-card:last-child {
        border-bottom: none;
    }

    .info-card h2 {
        font-size: 1.35rem;
    }

    .info-card p {
        font-size: 0.9rem;
    }

    .testimonials-home {
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .testimonial-home {
        padding: 2rem;
    }

    .testimonial-text-home {
        font-size: 0.9rem;
    }

    .contact-home {
        padding: 2rem 1rem;
    }

    .contact-home-grid {
        gap: 2rem;
    }

    .contact-home-box h2 {
        font-size: 1.5rem;
    }

    .contact-home-box p {
        font-size: 0.9rem;
    }

    .services-page-title {
        padding: 2rem 1rem;
    }

    .services-page-title h1 {
        font-size: 2rem;
    }

    .services-list {
        padding: 1rem;
    }

    .service-item,
    .service-item-reverse {
        grid-template-columns: 1fr !important;
        display: grid !important;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .service-item .service-image,
    .service-item-reverse .service-image {
        order: 1 !important;
    }

    .service-item .service-content,
    .service-item-reverse .service-content {
        order: 2 !important;
    }

    .service-content {
        padding: 0;
    }

    .service-content h2 {
        font-size: 1.5rem;
    }

    .service-content p {
        font-size: 0.9rem;
    }

    .service-image img {
        width: 250px;
        max-width: 100%;
    }

    .about-page-title {
        padding: 2rem 1rem;
    }

    .about-page-title h1 {
        font-size: 2rem;
    }

    .about-page-content {
        padding: 1rem;
    }

    .about-layout {
        gap: 2rem;
    }

    .about-sidebar {
        order: 1;
    }

    .about-main {
        order: 2;
        padding-top: 0;
    }

    .about-headshot img {
        max-width: 250px;
    }

    .about-section h2 {
        font-size: 1.5rem;
    }

    .about-section p {
        font-size: 0.9rem;
    }

    .contact-page-title {
        padding: 2rem 1rem 1.5rem 1rem;
    }

    .contact-page-title h1 {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 0.9rem;
    }

    .contact-page-main {
        padding: 1rem;
    }

    .contact-page-layout {
        gap: 3rem;
    }

    .contact-info-section h2,
    .contact-form-section h2 {
        font-size: 1.5rem;
    }

    .contact-detail p {
        font-size: 0.9rem;
    }

    .booking-info p {
        font-size: 0.9rem;
    }

    .page-hero {
        padding: 40px 20px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .card {
        padding: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 2rem;
    }

    .form-group-new input,
    .form-group-new textarea {
        font-size: 16px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        padding: 0.5rem;
    }

    .site-logo {
        width: 180px;
    }

    .nav-link-home {
        padding: 1rem 0;
        font-size: 0.95rem;
    }

    .hero {
        padding: 40px 15px;
    }

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

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

    .hero-home {
        padding: 1.5rem 0.75rem;
    }

    .hero-home-content h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .hero-home-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .info-card {
        padding: 1.5rem 1rem;
    }

    .info-card h2 {
        font-size: 1.25rem;
    }

    .info-card p {
        font-size: 0.85rem;
    }

    .testimonials-home {
        padding: 1.5rem 0.75rem;
    }

    .testimonial-home {
        padding: 1.5rem;
    }

    .testimonial-text-home {
        font-size: 0.85rem;
    }

    .testimonial-author-home {
        font-size: 0.9rem;
    }

    .contact-home {
        padding: 1.5rem 0.75rem;
    }

    .contact-home-box h2 {
        font-size: 1.35rem;
    }

    .contact-home-box p {
        font-size: 0.85rem;
    }

    .services-page-title {
        padding: 1.5rem 0.75rem;
    }

    .services-page-title h1 {
        font-size: 1.75rem;
    }

    .services-list {
        padding: 0.75rem;
    }

    .service-item,
    .service-item-reverse {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .service-content h2 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .service-content p {
        font-size: 0.85rem;
    }

    .service-image img {
        width: 220px;
    }

    .about-page-title {
        padding: 1.5rem 0.75rem;
    }

    .about-page-title h1 {
        font-size: 1.75rem;
    }

    .about-page-content {
        padding: 0.75rem;
    }

    .about-section {
        margin-bottom: 2rem;
    }

    .about-section h2 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .about-section p {
        font-size: 0.85rem;
    }

    .about-headshot img {
        max-width: 200px;
    }

    .about-name {
        font-size: 0.85rem;
    }

    .contact-page-title {
        padding: 1.5rem 0.75rem 1rem 0.75rem;
    }

    .contact-page-title h1 {
        font-size: 1.75rem;
    }

    .contact-subtitle {
        font-size: 0.85rem;
    }

    .contact-page-main {
        padding: 0.75rem;
    }

    .contact-page-layout {
        gap: 2rem;
    }

    .contact-info-section h2,
    .contact-form-section h2 {
        font-size: 1.35rem;
        margin-bottom: 1.5rem;
    }

    .contact-detail {
        margin-bottom: 1.25rem;
    }

    .contact-detail p {
        font-size: 0.85rem;
    }

    .booking-info {
        margin-top: 2rem;
    }

    .booking-info h3 {
        font-size: 1.1rem;
    }

    .booking-info p {
        font-size: 0.85rem;
    }

    .page-hero {
        padding: 30px 15px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero .subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 40px 15px;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .card h2 {
        font-size: 1.5rem;
    }

    .card p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .service-card,
    .about-card {
        padding: 1.5rem;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 1.5rem;
    }

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

    .form-group-new input,
    .form-group-new textarea {
        padding: 0.75rem;
        font-size: 16px;
    }

    .submit-button-new {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

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

    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 16px;
    }

    .submit-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

.nav-link.active {
    color: var(--primary-color);
}

.header-home {
    background: white;
    padding: 2rem 0 0 0;
    width: 100%;
    max-width: 100vw;
}

.logo-container {
    text-align: center;
    padding: 1rem 0;
}

.site-logo {
    width: 300px;
    height: auto;
    max-width: 100%;
}

.nav-home {
    background: #1a7a8e;
    padding: 0;
}

.nav-menu-home {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.nav-menu-home li {
    flex: 0 0 auto;
}

.nav-link-home {
    display: block;
    padding: 1rem 2.5rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.nav-link-home:hover,
.nav-link-home.active {
    background: rgba(255, 255, 255, 0.15);
}

.hero-home {
    background: white;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-home-content {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-home-content h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-home-content p {
    color: var(--text-light);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.hero-images {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-single {
    max-width: 100%;
    height: auto;
    display: block;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.info-card {
    background: white;
    padding: 3rem 2.5rem;
    text-align: center;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.info-card:last-child {
    border-right: none;
}

.info-card:nth-child(3) {
    border-right: none;
}

@media (max-width: 900px) {
    .info-card {
        border-right: none;
    }
}

.info-card h2 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.testimonials-home {
    background: #f5f5f5;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.testimonial-home {
    background: white;
    padding: 2.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-text-home {
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.testimonial-author-home {
    color: var(--text-dark);
    font-weight: 600;
    text-align: right;
}

.contact-home {
    background: white;
    padding: 4rem 2rem;
    width: 100%;
    max-width: 100vw;
}

.contact-home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-home-box h2 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.appointment-note-home {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-tagline-home {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.contact-home-box p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.contact-home-box a {
    color: #1a7a8e;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.services-page-title {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    width: 100%;
    max-width: 100vw;
}

.services-page-title h1 {
    font-size: 2.5rem;
    color: #666;
    font-weight: 400;
}

.services-list {
    background: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-item-reverse {
    /* Reverse layout on desktop only */
}

.service-content {
    padding: 1rem;
}

.service-content h2 {
    color: #666;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.service-content p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

.service-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-image img {
    max-width: 100%;
    width: 300px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.about-page-title {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
}

.about-page-title h1 {
    font-size: 2.5rem;
    color: #666;
    font-weight: 400;
}

.about-page-content {
    background: white;
    padding: 2rem;
    width: 100%;
    max-width: 100vw;
}

.about-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 4rem;
    align-items: start;
    width: 100%;
}

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

.about-headshot {
    margin-bottom: 1.5rem;
}

.about-headshot img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-name {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-main {
    padding-top: 2rem;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section h2 {
    color: #666;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-section p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

.contact-page-title {
    text-align: center;
    padding: 3rem 2rem 2rem 2rem;
    background: white;
}

.contact-page-title h1 {
    font-size: 2.5rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.contact-page-main {
    background: white;
    padding: 2rem;
    width: 100%;
    max-width: 100vw;
}

.contact-page-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 4rem;
    width: 100%;
}

.contact-info-section h2,
.contact-form-section h2 {
    color: #666;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

.contact-detail a {
    color: #1a7a8e;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.booking-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.booking-info h3 {
    color: #666;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.booking-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

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

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

.form-group-new label {
    font-weight: 600;
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group-new input,
.form-group-new textarea {
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #666;
    transition: border-color 0.3s ease;
    width: 100%;
    max-width: 100%;
}

.form-group-new input:focus,
.form-group-new textarea:focus {
    outline: none;
    border-color: #1a7a8e;
}

.form-group-new textarea {
    resize: vertical;
}

.submit-button-new {
    background: #1a7a8e;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

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

.form-success-new {
    display: none;
    text-align: center;
    padding: 2rem;
    background: #d4edda;
    border: 2px solid #c3e6cb;
    border-radius: 10px;
    margin-top: 2rem;
}

.form-success-new.show {
    display: block;
}

.form-success-new h3 {
    color: #155724;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.form-success-new p {
    color: #155724;
}

.form-error-new {
    display: none;
    text-align: center;
    padding: 2rem;
    background: #f8d7da;
    border: 2px solid #f5c6cb;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.form-error-new.show {
    display: block;
}

.form-error-new h3 {
    color: #721c24;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.form-error-new p {
    color: #721c24;
}
