        :root {
            --primary: #9C5D8B;
            --secondary: #F0E8F2;
            --accent: #FFA69E;
            --light: #FAF3FC;
            --dark: #483C46;
            --font-main: 'Helvetica Neue', Arial, sans-serif;
            --font-heading: 'Montserrat', sans-serif;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--font-main);
            color: var(--dark);
            background-color: var(--light);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background-color: white;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
        }

        .logo-image{
            width: 50px;
            height: 50px;
            object-fit: contain;
            margin-right: 10px;
        }
        
        .logo span {
            color: var(--accent);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav li {
            margin-left: 30px;
        }
        
        nav a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav a:hover {
            color: var(--primary);
        }
        
        .cta-button {
            background-color: var(--primary);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .cta-button:hover {
            background-color: var(--dark);
        }
        
        /* Mobile menu */
        .mobile-menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }
        
        /* Hero section */
        .hero {
            margin-top: 80px;
            padding: 100px 0;
            background-color: var(--secondary);
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }
        
        .hero-text {
            flex: 1;
        }
        
        .hero-image {
            flex: 1;
            text-align: right;
        }
        
        .hero-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        h1 {
            font-family: var(--font-heading);
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: var(--primary);
        }
        
        h3 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        p {
            margin-bottom: 20px;
        }
        
        .subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        /* About section */
        .about {
            padding: 100px 0;
        }
        
        .section-heading {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .features {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .feature {
            flex: 1;
            min-width: 300px;
            padding: 30px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        /* Classes section */
        .classes {
            padding: 100px 0;
            background-color: var(--secondary);
        }
        
        .class-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .class-card {
            flex: 1;
            min-width: 300px;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .class-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .class-image {
            height: 200px;
            background-color: #ddd;
            position: relative;
            overflow: hidden;
        }
        
        .class-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .class-content {
            padding: 20px;
        }
        
        .class-title {
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .class-info {
            color: #666;
            margin-bottom: 15px;
        }
        
        /* Trainers section */
        .trainers {
            padding: 100px 0;
        }
        
        .trainer-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .trainer-card {
            flex: 1;
            min-width: 250px;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .trainer-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .trainer-image {
            height: 250px;
            background-color: #ddd;
            position: relative;
            overflow: hidden;
        }
        
        .trainer-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .trainer-info {
            padding: 20px;
        }
        
        .trainer-name {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .trainer-role {
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        /* Testimonials section */
        .testimonials {
            padding: 100px 0;
            background-color: var(--secondary);
        }
        
        .testimonial-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .testimonial-card {
            flex: 1;
            min-width: 300px;
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            background-color: #ddd;
            overflow: hidden;
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-name {
            font-weight: 600;
        }
        
        .author-title {
            font-size: 0.9rem;
            color: #666;
        }
        
        /* Contact section */
        .contact {
            padding: 100px 0;
        }
        
        .contact-content {
            display: flex;
            gap: 40px;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-form {
            flex: 1;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            margin-right: 15px;
            color: var(--primary);
            font-size: 1.2rem;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        input, textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: var(--font-main);
        }
        
        textarea {
            height: 150px;
            resize: vertical;
        }
        
        button {
            background-color: var(--primary);
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        button:hover {
            background-color: var(--dark);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
        }
        
        .footer-heading {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--accent);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--accent);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .social-link:hover {
            background-color: var(--accent);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Responsive styles */
        @media (max-width: 768px) {
            .hero-content {
                flex-direction: column;
            }
            
            .hero-image {
                margin-top: 40px;
            }
            
            .contact-content {
                flex-direction: column;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            nav {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: white;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            }
            
            nav.show {
                display: block;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav li {
                margin: 0 0 15px 0;
            }
        }
