<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset and base styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #3c937a;
    --secondary: #f0ede6;
    --accent: #e98a61;
    --dark: #2a3c42;
    --light: #f8f5f2;
    --transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --radius: 12px;
}

@font-face {
    font-family: 'Aeonik';
    src: url('https://fonts.cdnfonts.com/css/montserrat') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Aeonik', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

h1 {
    font-size: 8rem;
    font-weight: 800;
}

h2 {
    font-size: 5.6rem;
}

h3 {
    font-size: 3.6rem;
}

p {
    margin-bottom: 2rem;
    max-width: 70ch;
}

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

button, .btn {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

button:hover, .btn:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 10rem 0;
    position: relative;
}

/* Header &amp; Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 2rem 0;
    transition: all var(--transition);
}

header.scrolled {
    background: rgba(248, 245, 242, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    padding: 1rem 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
}

.logo svg {
    height: 4rem;
    width: auto;
    margin-right: 1rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 4rem;
}

nav a {
    font-size: 1.8rem;
    font-weight: 500;
    position: relative;
}

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

nav a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 2.4rem;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
}

/* Hero Section - Asymmetric Design */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(60, 147, 122, 0.2) 0%, rgba(42, 60, 66, 0.4) 100%);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 80%;
}

.hero h1 {
    color: white;
    font-size: clamp(5rem, 10vw, 12rem);
    line-height: 1;
    margin-bottom: 3rem;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.5s;
}

.hero p {
    color: white;
    font-size: 2.2rem;
    max-width: 60ch;
    margin-bottom: 4rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.7s;
}

.hero-btn {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.9s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    opacity: 0;
    animation: fadeIn 1s forwards 1.5s;
}

.scroll-indicator span {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(-45deg);
    }
    40% {
        transform: translateY(-20px) rotate(-45deg);
    }
    60% {
        transform: translateY(-10px) rotate(-45deg);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* About Section - Rotated Layout */
.about {
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--secondary);
    border-radius: 50%;
    z-index: -1;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: var(--secondary);
    border-radius: 50%;
    z-index: -1;
}

.about-container {
    transform: rotate(-3deg);
    padding: 10rem 0;
}

.about-inner {
    transform: rotate(3deg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transition: all 2s ease-in-out;
}

.about-image img:hover {
    border-radius: 50% 30% 40% 60% / 50% 40% 50% 60%;
}

.about-content {
    padding-right: 5rem;
}

.about-content h2 {
    position: relative;
    display: inline-block;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 5px;
    background: var(--accent);
}

.accent-text {
    color: var(--primary);
    font-weight: 700;
}

/* Practices Section - Hexagonal Layout */
.practices {
    background-color: var(--secondary);
    position: relative;
    overflow: hidden;
}

.practices-heading {
    text-align: center;
    margin-bottom: 8rem;
    position: relative;
    z-index: 1;
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    padding: 0 5rem;
}

.practice-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transition: all var(--transition);
    transform: translateY(50px);
    opacity: 0;
}

.practice-card.revealed {
    transform: translateY(0);
    opacity: 1;
}

.practice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.practice-image {
    height: 250px;
    overflow: hidden;
}

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

.practice-card:hover .practice-image img {
    transform: scale(1.1);
}

.practice-content {
    padding: 3rem;
}

.practice-content h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

/* Services Section - Diagonal Layout */
.services {
    position: relative;
    padding: 15rem 0;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light) 0%, var(--light) 50%, var(--secondary) 50%, var(--secondary) 100%);
    z-index: -1;
}

.services-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-heading {
    text-align: center;
    margin-bottom: 8rem;
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 5rem;
}

.tab-btn {
    padding: 1.5rem 3rem;
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    font-size: 1.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary);
    color: white;
}

.services-content {
    width: 100%;
    max-width: 1000px;
}

.service-tab {
    display: none;
    animation: fadeIn 0.5s forwards;
}

.service-tab.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.service-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-details {
    padding: 3rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-details h3 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.service-features {
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    margin-right: 1.5rem;
    color: var(--accent);
    font-size: 2rem;
}

.price {
    font-size: 4.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2rem;
}

.price span {
    font-size: 2rem;
    font-weight: 400;
    color: var(--dark);
}

/* Instructors Section - Staggered Layout */
.instructors {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.instructors::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: var(--secondary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
}

.instructors-heading {
    text-align: center;
    margin-bottom: 8rem;
    position: relative;
    z-index: 1;
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.instructor-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.instructor-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.instructor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.instructor-card:nth-child(1) {
    grid-column: 1 / span 5;
    grid-row: 1;
}

.instructor-card:nth-child(2) {
    grid-column: 7 / span 6;
    grid-row: 1;
}

.instructor-card:nth-child(3) {
    grid-column: 3 / span 6;
    grid-row: 2;
    margin-top: -5rem;
}

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

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

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

.instructor-content {
    padding: 3rem;
}

.instructor-content h3 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.instructor-title {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Testimonials Section - Wave Design */
.testimonials {
    background-color: var(--dark);
    color: white;
    position: relative;
    padding: 15rem 0;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: var(--light);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: var(--light);
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

.testimonials-heading {
    text-align: center;
    margin-bottom: 8rem;
    color: white;
}

.testimonials-slider {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial {
    min-width: 100%;
    padding: 0 4rem;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 5rem;
    border-radius: var(--radius);
    position: relative;
    margin-bottom: 5rem;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid rgba(255, 255, 255, 0.1);
}

.testimonial-content p {
    font-size: 2.2rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-left: 5rem;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 2rem;
}

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

.author-info h4 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.author-info p {
    font-size: 1.6rem;
    margin-bottom: 0;
    opacity: 0.8;
}

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

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition);
}

.dot.active, .dot:hover {
    background: var(--primary);
}

/* Contact Section - Divided Layout */
.contact {
    position: relative;
    padding: 15rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.contact-info {
    padding-right: 5rem;
}

.contact-info h2 {
    margin-bottom: 3rem;
}

.contact-methods {
    margin-bottom: 4rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    color: white;
    font-size: 2rem;
}

.contact-details h4 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.contact-details p, .contact-details a {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.contact-form {
    background: white;
    padding: 5rem;
    border-radius: var(--radius);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 2.5rem;
}

.form-label {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 1.5rem;
    border: 2px solid var(--secondary);
    border-radius: var(--radius);
    font-size: 1.8rem;
    transition: all var(--transition);
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(60, 147, 122, 0.2);
    outline: none;
}

.form-textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 8rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
}

.footer-about .logo {
    margin-bottom: 2rem;
    color: white;
}

.footer-about p {
    margin-bottom: 3rem;
    opacity: 0.8;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1.5rem;
}

.footer-links a {
    font-size: 1.6rem;
    opacity: 0.8;
    transition: all var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
    padding-left: 5px;
}

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

/* Responsive */
@media (max-width: 1200px) {
    html {
        font-size: 58%;
    }
    
    .about-inner, .contact-container {
        gap: 5rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 56%;
    }
    
    .practices-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-inner, .contact-container {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    
    .about-content {
        padding-right: 0;
    }
    
    .service-tab.active {
        grid-template-columns: 1fr;
    }
    
    .instructors-grid {
        display: flex;
        flex-direction: column;
    }
    
    .instructor-card:nth-child(3) {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 54%;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--light);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--transition);
        z-index: 10;
    }
    
    nav ul.active {
        right: 0;
    }
    
    .mobile-toggle {
        display: block;
        z-index: 11;
    }
    
    .practices-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .testimonial-content {
        padding: 3rem;
    }
}


 .text-wrapper h2, .text-wrapper h3{
  margin-top: 20px;
  margin-bottom: 10px;
}

.text-wrapper h1{
  text-align: center;
  font-size: 3rem;
  margin-bottom: 20px;
}
.text-wrapper h2{
  font-size: 1.5rem;
}

.text-wrapper{
  margin: 30px auto;
  max-width: 1200px;
  padding: 20px;
}</pre></body></html>