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

        :root {
            --turquoise: #5FC9C4;
            --mint: #A8E6E3;
            --cream: #F5F0E8;
            --dark: #2C3E50;
            --purple: #B8A4D4;
        }

        body {
            font-family: 'Cormorant Garamond', serif;
            color: var(--dark);
            line-height: 1.7;
            background: var(--cream);
	    margin: 0;
	    overflow-x: hidden;
        }

        /* Header/Navigation */
        header {
            background: var(--turquoise);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

        .logo-image {
            width: 60px;
            height: 60px;
            background: url('Images/Logo.png') center center/cover no-repeat;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: white;
            font-size: 1.3rem;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: #2B5F9E;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 1.1rem;
        }

        .nav-links a:hover {
            color: white;
        }

        .search-icon {
            cursor: pointer;
            color: white;
            font-size: 1.2rem;
        }

        /* Hero Section */
        .hero {
            background: var(--turquoise);
            padding: 6rem 2rem;
            text-align: center;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero .location {
            font-size: 1.8rem;
            color: var(--dark);
            margin-top: 1rem;
        }

        /* Profile Section */
        .profile-section {
            background: var(--cream);
            padding: 4rem 2rem;
        }

        .profile-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

		.profile-image {
			width: 100%;
			height: 600px;
			background: url('Images/Tiff.jpg') center center/cover no-repeat;
			border-radius: 50% 50% 0 0;
			position: relative;
			overflow: hidden;
		}

        .name-badge {
            background: var(--turquoise);
            border: 3px solid var(--turquoise);
            padding: 2rem;
            display: inline-block;
            margin-bottom: 2rem;
        }

        .name-badge h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: var(--turquoise);
            background: white;
            padding: 1rem 2rem;
        }

        .credentials {
            display: flex;
            gap: 1rem;
            flex-wrap: nowrap;
            margin-top: 2rem;
            border: 2px solid var(--turquoise);
            padding: 1.5rem;
        }

        .credential-item {
            text-align: center;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 0 1rem;
            border-right: 1px solid var(--turquoise);
        }

        .credential-item:last-child {
            border-right: none;
        }

        /* Main Section */
/* Main Section */
.main-section {
    width: 100%;
    padding: 4rem 1.25rem;   /* smaller side padding for phones */
    display: flex;           /* simpler than grid for one column */
    justify-content: center; /* center the column */
    box-sizing: border-box;  /* critical: prevents overflow */
}

/* Text Column */
.main-text {
    width: 100%;
    max-width: 800px;        /* readable on desktop, safe on mobile */
    font-size: 1.15rem;
    line-height: 1.8;
    text-align: center;
    box-sizing: border-box;
}

/* Paragraph spacing */
.main-text p {
    margin-bottom: 1.5rem;
}

.main-text * {
    max-width: 100%;
    word-wrap: break-word;
}

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

button, a {
    max-width: 100%;
}


        /* About Section */
        .about-section {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
        }

        .about-text {
            font-size: 1.15rem;
            line-height: 1.8;
        }

        .about-text p {
            margin-bottom: 1.5rem;
        }

        .meditation-image {
            width: 100%;
            height: 400px;
            background: url('index_files/meditation-1384758_1920-300x207.jpg') center center/cover no-repeat;
            border-radius: 50%;
            position: relative;
            overflow: hidden;
        }

        /* Team Section */
        .team-section {
            background: white;
            padding: 4rem 2rem;
        }

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

        .team-member {
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
            align-items: start;
        }

        .michelle-photo {
            width: 100%;
            height: 500px;
            background: url('Images/Michelle.jpeg') center center/cover no-repeat;
            position: relative;
        }

        .erin-photo {
            width: 100%;
            height: 500px;
            background: url('Images/Erin.jpeg') center center/cover no-repeat;
            position: relative;
        }

        .hands-photo {
            width: 300px;
            height: 213px;
            background: url('Images/hands.jpg') center center/cover no-repeat;
            position: relative;
        }

        .meditate-image {
            width: 300px;
            height: 213px;
            background: url('index_files/meditation-1384758_1920-300x207.jpg') center center/cover no-repeat;
            position: relative;
        }

        .green-crystal {
            width: 300px;
            height: 247px;
            background: url('Images/greenCrystal.jpg') center center/cover no-repeat;
            position: relative;
        }

        .cloud-photo {
            width: 300px;
            height: 200px;
            background: url('Images/clouds.jpg') center center/cover no-repeat;
            position: relative;
        }

        .ashley-photo {
            width: 100%;
            height: 500px;
            background: url('Images/Ashley.png') center center/cover no-repeat;
            position: relative;
        }

        .sally-photo {
            width: 100%;
            height: 500px;
            background: url('Images/Sally.jpg') center center/cover no-repeat;
            position: relative;
        }

        .brenda-photo {
            width: 100%;
            height: 500px;
            background: url('Images/Brenda.jpeg') center center/cover no-repeat;
            position: relative;
        }

        .team-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .team-info p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .certifications {
            margin-top: 2rem;
        }

        .certifications h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .certifications ul {
            list-style: none;
            padding-left: 0;
        }

        .certifications li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
        }

        .certifications li::before {
            content: "–";
            position: absolute;
            left: 0;
        }

        /* Newsletter Section */
        .newsletter-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 6rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .newsletter-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="600" cy="300" r="200" fill="rgba(255,255,255,0.1)"/></svg>');
            background-size: cover;
            opacity: 0.3;
        }

        .newsletter-content {
            position: relative;
            z-index: 1;
            max-width: 600px;
            margin: 0 auto;
        }

        .newsletter-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: white;
            margin-bottom: 2rem;
            letter-spacing: 3px;
        }

        .newsletter-form {
            background: var(--turquoise);
            padding: 2rem;
            border-radius: 10px;
        }

        .newsletter-form input[type="email"] {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .newsletter-form button {
            width: 100%;
            padding: 1rem;
            background: transparent;
            color: white;
            border: 2px solid white;
            border-radius: 5px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Cormorant Garamond', serif;
        }

        .newsletter-form button:hover {
            background: white;
            color: var(--turquoise);
        }

        .social-icon {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #2B5F9E;
            border-radius: 50%;
            margin-top: 2rem;
            line-height: 40px;
            color: white;
            text-decoration: none;
        }

        /* CTA Section */
        .cta-section {
            background: var(--cream);
            padding: 0;
            position: relative;
        }

        .cta-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 350px;
            min-height: 500px;
        }

        .cta-image {
            background: url('Images/SpaStones.jpg') center center/cover no-repeat;
            position: relative;
        }

        .cta-content {
            background: var(--turquoise);
            padding: 4rem 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            border-radius: 50% 0 0 0;
        }

        .cta-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .cta-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 2rem;
            line-height: 1.3;
        }

        .book-button {
            background: white;
            color: var(--turquoise);
            padding: 1.5rem 3rem;
            border: none;
            border-radius: 5px;
            font-size: 1.2rem;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s;
        }

        .book-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        /* Footer */
        footer {
            background: var(--turquoise);
            padding: 3rem 2rem 2rem;
        }

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

        .footer-links {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #2B5F9E;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
        }

        .footer-social {
            width: 50px;
            height: 50px;
            background: #2B5F9E;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(43, 95, 158, 0.3);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.95rem;
        }

        .back-to-top {
            color: var(--dark);
            text-decoration: none;
            cursor: pointer;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .profile-container,
            .about-section,
            .team-member,
            .cta-container {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
            }

            .team-photo {
                height: 400px;
            }
        }
    </style>

