/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
}

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

/* Navigation */
.navbar {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #8b5cf6;
    text-decoration: none;
}

.logo-svg {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.logo:hover .logo-svg {
    transform: rotate(10deg) scale(1.1);
}

.logo-svg .petal {
    fill: #8b5cf6;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.logo-svg .center {
    fill: #06b6d4;
}

.logo:hover .logo-svg .petal {
    opacity: 1;
    fill: #06b6d4;
}

.logo:hover .logo-svg .center {
    fill: #8b5cf6;
}

.logo-text {
    fill: #8b5cf6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    font-size: 8px;
    text-anchor: middle;
    transition: fill 0.3s ease;
}

.logo:hover .logo-text {
    fill: #06b6d4;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #8b5cf6;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #8b5cf6;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #e0e0e0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 100px 20px 50px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b69 100%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #b0b0b0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-image {
    flex: 1;
    text-align: center;
    margin-left: 50px;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
}

.btn-secondary:hover {
    background: #8b5cf6;
    color: white;
    transform: translateY(-2px);
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: #2a2a2a;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #8b5cf6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: rgba(139, 92, 246, 0.1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.benefit-card i {
    font-size: 3rem;
    color: #06b6d4;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #8b5cf6;
}

.benefit-card p {
    color: #b0b0b0;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #1a1a1a;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #8b5cf6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: rgba(6, 182, 212, 0.1);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(6, 182, 212, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(6, 182, 212, 0.2);
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    margin-bottom: 20px;
    font-style: italic;
    color: #d0d0d0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: #06b6d4;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #888;
    font-size: 0.9rem;
}

/* Location Section */
.location {
    padding: 100px 0;
    background: #2a2a2a;
}

.location h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #8b5cf6;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #06b6d4;
}

.location-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-info i {
    color: #8b5cf6;
    width: 20px;
}

.location-hours {
    margin-top: 30px;
    padding: 20px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.location-hours h4 {
    color: #8b5cf6;
    margin-bottom: 15px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    filter: grayscale(50%) invert(92%) contrast(83%);
}

/* Contact Form Section */
.contact-form {
    padding: 100px 0;
    background: #1a1a1a;
}

.contact-form h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #8b5cf6;
}

.contact-form > .container > p {
    text-align: center;
    margin-bottom: 50px;
    color: #b0b0b0;
    font-size: 1.1rem;
}

.form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form input,
.form select,
.form textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    color: #e0e0e0;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.form input::placeholder,
.form textarea::placeholder {
    color: #888;
}

/* Footer */
.footer {
    background: #0f0f0f;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #8b5cf6;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 10px;
    color: #b0b0b0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section i {
    color: #06b6d4;
    width: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #8b5cf6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #8b5cf6;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

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

    .nav-menu li {
        margin: 15px 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
    }
    
    .hero-content {
        text-align: center;
    }

    .hero-image {
        margin: 40px 0 0 0;
    }

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

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}/* Additional styles for specific pages */

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b69 100%);
    padding: 150px 0 100px;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

/* Story Section */
.our-story {
    padding: 100px 0;
    background: #2a2a2a;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #8b5cf6;
}

.story-text p {
    margin-bottom: 25px;
    color: #d0d0d0;
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.3);
}

/* Values Section */
.values {
    padding: 100px 0;
    background: #1a1a1a;
}

.values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #8b5cf6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-card {
    background: rgba(6, 182, 212, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(6, 182, 212, 0.3);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.value-card i {
    font-size: 3rem;
    color: #06b6d4;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #8b5cf6;
}

/* Team Preview */
.team-preview {
    padding: 100px 0;
    background: #2a2a2a;
}

.team-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #8b5cf6;
}

.team-preview p {
    text-align: center;
    margin-bottom: 60px;
    color: #b0b0b0;
    font-size: 1.1rem;
}

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

.team-member {
    background: rgba(139, 92, 246, 0.1);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #8b5cf6;
}

.team-member h3 {
    color: #8b5cf6;
    margin-bottom: 10px;
}

.team-member p {
    color: #06b6d4;
    margin-bottom: 10px;
}

.team-member span {
    color: #888;
    font-size: 0.9rem;
}

/* Facilities */
.facilities {
    padding: 100px 0;
    background: #1a1a1a;
}

.facilities h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #8b5cf6;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.facility-item i {
    font-size: 2.5rem;
    color: #06b6d4;
    min-width: 60px;
}

.facility-item h3 {
    color: #8b5cf6;
    margin-bottom: 10px;
}

.facility-item p {
    color: #d0d0d0;
}

/* Classes Grid */
.classes {
    padding: 100px 0;
    background: #1a1a1a;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.class-card {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.class-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.class-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.class-content {
    padding: 30px;
}

.class-level {
    display: inline-block;
    background: #06b6d4;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.class-card h3 {
    color: #8b5cf6;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.class-card p {
    color: #d0d0d0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.class-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.class-benefits span {
    color: #06b6d4;
    font-size: 0.9rem;
}

.class-benefits i {
    margin-right: 8px;
}

.class-duration {
    color: #888;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Special Programs */
.special-programs {
    padding: 100px 0;
    background: #2a2a2a;
}

.special-programs h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #8b5cf6;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.program-card {
    background: rgba(6, 182, 212, 0.1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.program-card h3 {
    color: #06b6d4;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.program-card p {
    margin-bottom: 30px;
    color: #d0d0d0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Schedule Styles */
.schedule-nav {
    padding: 50px 0;
    background: #2a2a2a;
}

.schedule-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: transparent;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: #8b5cf6;
    color: white;
}

.schedule {
    padding: 50px 0 100px;
    background: #1a1a1a;
}

.schedule-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
}

.schedule-header {
    display: grid;
    grid-template-columns: 100px repeat(7, 1fr);
    background: rgba(139, 92, 246, 0.2);
    padding: 20px 0;
    font-weight: bold;
    color: #8b5cf6;
}

.schedule-row {
    display: grid;
    grid-template-columns: 100px repeat(7, 1fr);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.time-slot {
    padding: 20px;
    background: rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #8b5cf6;
}

.day-column,
.time-column {
    text-align: center;
    padding: 15px 10px;
}

.class-slot {
    padding: 10px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(139, 92, 246, 0.1);
}

.class-slot.empty {
    background: rgba(255, 255, 255, 0.02);
}

.class-slot.has-class {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    margin: 5px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.class-slot.has-class:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: scale(1.02);
}

.class-info {
    text-align: center;
}

.class-info h4 {
    color: #06b6d4;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.class-info .instructor {
    color: #8b5cf6;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 3px;
}

.class-info .duration {
    color: #888;
    font-size: 0.7rem;
}

/* Class level colors */
.class-slot.beginner {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.class-slot.intermediate {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
}

.class-slot.advanced {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

.class-slot.prenatal {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.3);
}

/* Legend */
.schedule-legend {
    padding: 50px 0;
    background: #2a2a2a;
}

.schedule-legend h3 {
    text-align: center;
    color: #8b5cf6;
    margin-bottom: 30px;
}

.legend-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 5px;
}

.legend-color.beginner {
    background: rgba(34, 197, 94, 0.7);
}

.legend-color.intermediate {
    background: rgba(249, 115, 22, 0.7);
}

.legend-color.advanced {
    background: rgba(239, 68, 68, 0.7);
}

.legend-color.prenatal {
    background: rgba(168, 85, 247, 0.7);
}

/* Booking Info */
.booking-info {
    padding: 100px 0;
    background: #1a1a1a;
}

.booking-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.booking-card {
    background: rgba(139, 92, 246, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.booking-card h3 {
    color: #8b5cf6;
    margin-bottom: 20px;
}

.booking-card ul {
    list-style: none;
}

.booking-card li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d0d0d0;
}

.booking-card i {
    color: #06b6d4;
    width: 20px;
}

/* Instructor Cards */
.instructors {
    padding: 100px 0;
    background: #1a1a1a;
}

.instructors-grid {
    display: grid;
    gap: 60px;
}

.instructor-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: rgba(139, 92, 246, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.instructor-card:nth-child(even) {
    grid-template-columns: 1fr 300px;
}

.instructor-card:nth-child(even) .instructor-image {
    order: 2;
}

.instructor-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.instructor-info h3 {
    color: #8b5cf6;
    font-size: 2rem;
    margin-bottom: 10px;
}

.instructor-info .title {
    color: #06b6d4;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.instructor-info .experience {
    color: #888;
    margin-bottom: 20px;
}

.specializations {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.spec-tag {
    background: rgba(6, 182, 212, 0.2);
    color: #06b6d4;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.instructor-info .bio {
    color: #d0d0d0;
    line-height: 1.6;
    margin-bottom: 25px;
}

.certifications h4 {
    color: #8b5cf6;
    margin-bottom: 10px;
}

.certifications ul {
    list-style: none;
}

.certifications li {
    color: #b0b0b0;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.certifications li::before {
    content: "•";
    color: #06b6d4;
    position: absolute;
    left: 0;
}

/* Workshops */
.workshops {
    padding: 100px 0;
    background: #2a2a2a;
}

.workshops h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #8b5cf6;
}

.workshops p {
    text-align: center;
    margin-bottom: 60px;
    color: #b0b0b0;
    font-size: 1.1rem;
}

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.workshop-card {
    background: rgba(6, 182, 212, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.workshop-card h3 {
    color: #06b6d4;
    margin-bottom: 15px;
}

.workshop-card p {
    margin-bottom: 25px;
    color: #d0d0d0;
}

/* Pricing Styles */
.pricing {
    padding: 100px 0;
    background: #1a1a1a;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(139, 92, 246, 0.05);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.pricing-card.popular {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

.pricing-card.premium {
    border-color: #06b6d4;
    background: rgba(6, 182, 212, 0.1);
}

.popular-badge,
.premium-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #8b5cf6;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.premium-badge {
    background: #06b6d4;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-card h3 {
    color: #8b5cf6;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.price {
    margin-bottom: 10px;
}

.amount {
    font-size: 3rem;
    font-weight: bold;
    color: #8b5cf6;
}

.currency {
    font-size: 1.2rem;
    color: #06b6d4;
    margin-left: 5px;
}

.per-class {
    display: block;
    color: #888;
    font-size: 0.9rem;
    margin-top: 5px;
}

.features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.features li {
    padding: 8px 0;
    color: #d0d0d0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features i {
    color: #06b6d4;
    font-size: 0.9rem;
}

/* Additional Services */
.additional-services {
    padding: 100px 0;
    background: #2a2a2a;
}

.additional-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #8b5cf6;
}

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

.service-item {
    background: rgba(6, 182, 212, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.service-item i {
    font-size: 3rem;
    color: #06b6d4;
    margin-bottom: 20px;
}

.service-item h3 {
    color: #8b5cf6;
    margin-bottom: 15px;
}

.service-item p {
    color: #d0d0d0;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8b5cf6;
}

/* Discounts */
.discounts {
    padding: 100px 0;
    background: #1a1a1a;
}

.discounts h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #8b5cf6;
}

.discount-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.discount-card {
    background: rgba(139, 92, 246, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.discount-card i {
    font-size: 2.5rem;
    color: #06b6d4;
    margin-bottom: 20px;
}

.discount-card h3 {
    color: #8b5cf6;
    margin-bottom: 15px;
}

/* Payment Info */
.payment-info {
    padding: 100px 0;
    background: #2a2a2a;
}

.payment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.payment-methods h3,
.payment-terms h3 {
    color: #8b5cf6;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.payment-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 2rem;
    color: #06b6d4;
}

.payment-methods ul,
.payment-terms ul {
    list-style: none;
}

.payment-methods li,
.payment-terms li {
    padding: 8px 0;
    color: #d0d0d0;
}

.payment-terms li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-terms i {
    color: #06b6d4;
}

/* Blog Styles */
.featured-article {
    padding: 100px 0;
    background: #2a2a2a;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.category {
    display: inline-block;
    background: #06b6d4;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.featured-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #8b5cf6;
}

.featured-text p {
    margin-bottom: 20px;
    color: #d0d0d0;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    color: #888;
    font-size: 0.9rem;
}

.article-meta i {
    margin-right: 5px;
    color: #06b6d4;
}

/* Blog Posts */
.blog-posts {
    padding: 100px 0;
    background: #1a1a1a;
}

.blog-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 20px;
    background: transparent;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: #8b5cf6;
    color: white;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: rgba(139, 92, 246, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-card h3 {
    color: #8b5cf6;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.blog-card p {
    color: #d0d0d0;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Newsletter */
.newsletter {
    padding: 100px 0;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    text-align: center;
    color: white;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 20px;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 15px 25px;
    border: none;
    border-radius: 25px;
    background: white;
    color: #8b5cf6;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Styles */
.contact-section {
    padding: 100px 0;
    background: #1a1a1a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-form-section h2,
.contact-info h2 {
    color: #8b5cf6;
    margin-bottom: 30px;
    font-size: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    color: #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    font-size: 1.5rem;
    color: #06b6d4;
    margin-top: 5px;
    min-width: 25px;
}

.info-item h3 {
    color: #8b5cf6;
    margin-bottom: 5px;
}

.info-item p {
    color: #d0d0d0;
    margin-bottom: 5px;
}

.info-item small {
    color: #888;
    font-size: 0.9rem;
}

.social-section {
    margin-top: 40px;
}

.social-section h3 {
    color: #8b5cf6;
    margin-bottom: 20px;
}

.social-section .social-links {
    flex-direction: column;
    gap: 15px;
}

.social-section .social-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    color: #8b5cf6;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.social-section .social-links a:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateX(10px);
}

/* Contact Map */
.contact-map {
    padding: 100px 0;
    background: #2a2a2a;
}

.contact-map h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #8b5cf6;
}

.map-directions {
    margin-top: 50px;
}

.map-directions h3 {
    text-align: center;
    color: #8b5cf6;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.direction-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.direction-item i {
    font-size: 2rem;
    color: #06b6d4;
    min-width: 40px;
}

.direction-item h4 {
    color: #8b5cf6;
    margin-bottom: 5px;
}

.direction-item p {
    color: #d0d0d0;
    font-size: 0.9rem;
}

/* FAQ */
.faq-section {
    padding: 100px 0;
    background: #1a1a1a;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #8b5cf6;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background: rgba(139, 92, 246, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.faq-item h3 {
    color: #8b5cf6;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #d0d0d0;
    line-height: 1.6;
}

/* Privacy Policy Styles */
.privacy-content {
    padding: 100px 0;
    background: #1a1a1a;
}

.privacy-document {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.document-meta {
    background: rgba(139, 92, 246, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 4px solid #8b5cf6;
}

.document-meta p {
    margin-bottom: 10px;
    color: #d0d0d0;
}

.privacy-document h2 {
    color: #8b5cf6;
    margin: 40px 0 20px 0;
    font-size: 1.8rem;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
    padding-bottom: 10px;
}

.privacy-document p {
    color: #d0d0d0;
    margin-bottom: 20px;
    line-height: 1.7;
}

.privacy-document ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-document li {
    color: #d0d0d0;
    margin-bottom: 10px;
    line-height: 1.6;
}

.privacy-document strong {
    color: #06b6d4;
}

.policy-footer {
    margin-top: 50px;
    padding: 30px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.policy-footer em {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Success Page Styles */
.success-section {
    padding: 150px 0 100px;
    background: #1a1a1a;
    text-align: center;
}

.success-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    font-size: 5rem;
    color: #06b6d4;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-message {
    font-size: 1.2rem;
    color: #d0d0d0;
    margin-bottom: 60px;
}

.next-steps {
    margin-bottom: 60px;
}

.next-steps h2 {
    color: #8b5cf6;
    margin-bottom: 40px;
    font-size: 2rem;
}

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

.step-item {
    background: rgba(139, 92, 246, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.step-item i {
    font-size: 2.5rem;
    color: #06b6d4;
    margin-bottom: 15px;
}

.step-item h3 {
    color: #8b5cf6;
    margin-bottom: 10px;
}

.step-item p {
    color: #d0d0d0;
    font-size: 0.9rem;
}

.success-actions {
    margin-bottom: 60px;
}

.success-actions h2 {
    color: #8b5cf6;
    margin-bottom: 30px;
    font-size: 2rem;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.action-buttons .btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-connect {
    margin-bottom: 60px;
}

.social-connect h2 {
    color: #8b5cf6;
    margin-bottom: 20px;
    font-size: 2rem;
}

.social-connect p {
    color: #b0b0b0;
    margin-bottom: 30px;
}

.social-links.large {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-links.large a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    text-decoration: none;
    border-radius: 25px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
}

.social-links.large a:hover {
    background: #8b5cf6;
    color: white;
    transform: translateY(-3px);
}

.contact-reminder {
    margin-bottom: 40px;
}

.reminder-card {
    background: rgba(6, 182, 212, 0.1);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.reminder-card h3 {
    color: #06b6d4;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.reminder-card p {
    color: #d0d0d0;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d0d0d0;
    margin: 0;
}

.contact-info i {
    color: #06b6d4;
}

/* Suggested Content */
.suggested-content {
    padding: 100px 0;
    background: #2a2a2a;
}

.suggested-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #8b5cf6;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.suggestion-card {
    background: rgba(139, 92, 246, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.suggestion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
}

.suggestion-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.suggestion-card h3 {
    color: #8b5cf6;
    margin: 20px 0 15px 0;
    padding: 0 25px;
    font-size: 1.3rem;
}

.suggestion-card p {
    color: #d0d0d0;
    margin-bottom: 20px;
    padding: 0 25px;
    line-height: 1.6;
}

.suggestion-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    color: #06b6d4;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.suggestion-link:hover {
    background: rgba(6, 182, 212, 0.1);
    padding-left: 35px;
}

/* Responsive Design for Additional Styles */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .featured-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .form-group {
        grid-template-columns: 1fr;
    }
    
    .instructor-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .instructor-card:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .instructor-card:nth-child(even) .instructor-image {
        order: 0;
    }
    
    .payment-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .schedule-header,
    .schedule-row {
        grid-template-columns: 80px repeat(7, 1fr);
        font-size: 0.8rem;
    }
    
    .day-column,
    .time-column {
        padding: 8px 5px;
    }
    
    .class-info h4 {
        font-size: 0.8rem;
    }
    
    .class-info .instructor,
    .class-info .duration {
        font-size: 0.7rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .directions-grid {
        grid-template-columns: 1fr;
    }
    
    .legend-items {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}