/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    color: #8b4513;
}

h3 {
    font-size: 1.5rem;
    color: #8b4513;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo h1 {
    color: #f4f1eb;
    font-size: 1.8rem;
    margin: 0;
}

.om-symbol {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f4f1eb;
    padding: 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link {
    color: #f4f1eb;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(244, 241, 235, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #f4f1eb;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
.main-content {
    padding: 2rem 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-image {
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #8b4513;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-quote {
    background: rgba(139, 69, 19, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #8b4513;
}

.hero-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.hero-quote cite {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-text h3 {
    margin-bottom: 1.5rem;
    color: #8b4513;
}

.location-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1rem;
    margin: 1.5rem 0;
    color: #856404;
}

.yoga-time-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Philosophy Section */
.philosophy-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    margin: 2rem 0;
    border-radius: 20px;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.philosophy-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.philosophy-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.philosophy-text h3 {
    margin-bottom: 1.5rem;
    color: #8b4513;
}

.humboldt-quote {
    background: rgba(139, 69, 19, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #8b4513;
    font-size: 1.1rem;
    font-style: italic;
    color: #8b4513;
    margin-bottom: 1rem;
}

.humboldt-quote cite {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    font-style: normal;
}

/* Mantra Section */
.mantra-section {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mantra-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.mantra-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mantra-text h3 {
    margin-bottom: 1.5rem;
    color: #8b4513;
}

.mantra-example {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border-left: 5px solid #8b4513;
}

.mantra-example h4 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.mantra-text-example {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #8b4513;
    font-style: italic;
}

/* Contact Info */
.contact-info {
    padding: 3rem 0;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: #f4f1eb;
    text-align: center;
    border-radius: 20px;
    margin: 2rem 0;
}

.contact-info h3 {
    color: #f4f1eb;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #f4f1eb;
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
}

.footer-content p {
    margin-bottom: 0.5rem;
}

.footer a {
    color: #f4f1eb;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content,
    .philosophy-content,
    .mantra-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-images,
    .philosophy-images {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-section,
    .philosophy-section,
    .mantra-section {
        padding: 2rem 0;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.about-content,
.philosophy-content,
.mantra-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Spiritual Elements */
.om-symbol {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Additional Styles for Yoga Philosophy Page */
.philosophy-main {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.philosophy-card {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.philosophy-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.philosophy-card-content {
    padding: 1.5rem;
}

.philosophy-card-content h3 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.philosophy-card-content p {
    font-size: 1rem;
    line-height: 1.6;
}

.highlight-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: #8b4513;
    text-align: center;
    font-weight: 600;
}

.deep-philosophy {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    margin: 2rem 0;
    border-radius: 20px;
}

.deep-philosophy-content h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.philosophy-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.principle {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #8b4513;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.principle h4 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.principle p {
    font-size: 1rem;
    line-height: 1.6;
}

.spiritual-practice {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.practice-content h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.practice-item {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.practice-item:hover {
    transform: translateY(-3px);
}

.practice-item h4 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.practice-item p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive adjustments for philosophy pages */
@media (max-width: 768px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-principles {
        grid-template-columns: 1fr;
    }
    
    .practice-grid {
        grid-template-columns: 1fr;
    }
    
    .deep-philosophy-content h2,
    .practice-content h2 {
        font-size: 1.8rem;
    }
}

/* Mantra Singing Page Styles */
.mantra-intro {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    color: #8b4513;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mantra-examples {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    margin: 2rem 0;
    border-radius: 20px;
}

.mantra-examples h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.mantra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mantra-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.mantra-card:hover {
    transform: translateY(-5px);
}

.mantra-card h3 {
    color: #8b4513;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.4rem;
}

.mantra-text {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 5px solid #8b4513;
}

.mantra-text p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #8b4513;
    font-style: italic;
    text-align: center;
    margin: 0;
}

.mantra-meaning h4 {
    color: #8b4513;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.mantra-meaning p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.mantra-benefits {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mantra-benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
}

.benefit-item h4 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-item p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.practice-guidelines {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    margin: 2rem 0;
    border-radius: 20px;
}

.practice-guidelines h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.guidelines-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.guideline-step {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #8b4513;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.guideline-step h4 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.guideline-step p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.video-section {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.video-content {
    text-align: center;
}

.video-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.video-wrapper {
    display: inline-block;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background: #000;
    margin-bottom: 1.5rem;
}

.youtube-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.video-placeholder {
    display: inline-block;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 400px;
}

.video-thumbnail {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.video-info {
    margin-top: 1rem;
}

.video-info h4 {
    color: #8b4513;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.video-info p {
    font-size: 1rem;
    margin: 0;
    color: #666;
}

.video-link-fallback {
    margin-top: 1rem !important;
}

.youtube-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.youtube-link:hover {
    background: linear-gradient(135deg, #a0522d 0%, #8b4513 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

/* Responsive adjustments for mantra page */
@media (max-width: 768px) {
    .mantra-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .guidelines-content {
        grid-template-columns: 1fr;
    }
    
    .mantra-examples h2,
    .mantra-benefits h2,
    .practice-guidelines h2,
    .video-section h2 {
        font-size: 1.8rem;
    }
    
    .video-wrapper {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .video-container {
        border-radius: 10px;
    }
    
    .youtube-video {
        border-radius: 10px;
    }
}

/* Studio Page Styles */
.studio-location {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.location-content h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.location-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-text h3 {
    color: #8b4513;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.location-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.location-features h4 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.location-features ul {
    list-style: none;
    padding: 0;
}

.location-features li {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.location-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.studio-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.studio-gallery {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    margin: 2rem 0;
    border-radius: 20px;
}

.studio-gallery h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-overlay p {
    margin: 0;
    font-size: 1rem;
}

.studio-philosophy {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.studio-philosophy h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.philosophy-item {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-3px);
}

.philosophy-item h4 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.philosophy-item p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.studio-amenities {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    margin: 2rem 0;
    border-radius: 20px;
}

.studio-amenities h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.amenity {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #8b4513;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.amenity h4 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.amenity ul {
    list-style: none;
    padding: 0;
}

.amenity li {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.amenity li:last-child {
    border-bottom: none;
}

.directions {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.directions h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.directions-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.directions-info h3 {
    color: #8b4513;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.directions-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contact-details {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.contact-details h4 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
}

.contact-card h3 {
    color: #8b4513;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-details p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.about-dagmar {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    margin: 2rem 0;
    border-radius: 20px;
}

.about-dagmar h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.dagmar-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.dagmar-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.dagmar-philosophy {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #8b4513;
    margin-top: 2rem;
}

.dagmar-philosophy h4 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.dagmar-philosophy blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #8b4513;
    margin: 0;
}

.dagmar-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.impressum {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.impressum h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
}

.impressum-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(139, 69, 19, 0.2);
}

.impressum-section:last-child {
    border-bottom: none;
}

.impressum-section h3 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.impressum-details p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.impressum-details h4 {
    color: #8b4513;
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.1rem;
}

.social-media {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    margin: 2rem 0;
    border-radius: 20px;
}

.social-media h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.social-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.social-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.social-link {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link h4 {
    color: #8b4513;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.social-link p {
    font-size: 1rem;
    margin: 0;
}

/* Responsive adjustments for studio and contact pages */
@media (max-width: 768px) {
    .location-info {
        grid-template-columns: 1fr;
    }
    
    .location-images {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-list {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .dagmar-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .studio-location h2,
    .studio-gallery h2,
    .studio-philosophy h2,
    .studio-amenities h2,
    .directions h2,
    .contact-section h2,
    .about-dagmar h2,
    .impressum h2,
    .social-media h2 {
        font-size: 1.8rem;
    }
}

/* About Me Page Styles */
.personal-story {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.personal-story h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.teaching-philosophy {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    margin: 2rem 0;
    border-radius: 20px;
}

.teaching-philosophy h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-3px);
}

.philosophy-card h3 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.philosophy-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.spiritual-beliefs {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.spiritual-beliefs h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.beliefs-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.beliefs-text h3 {
    color: #8b4513;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.beliefs-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.main-quote {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #8b4513;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: #8b4513;
    margin: 2rem 0;
}

.beliefs-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.special-practices {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    margin: 2rem 0;
    border-radius: 20px;
}

.special-practices h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.practice-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.practice-item:hover {
    transform: translateY(-3px);
}

.practice-item h4 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.practice-item p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.personal-mission {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.personal-mission h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-quote {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #8b4513;
    margin-top: 2rem;
}

.mission-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #8b4513;
    margin: 0;
}

.mission-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-invitation {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    margin: 2rem 0;
    border-radius: 20px;
}

.contact-invitation h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.invitation-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.invitation-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.contact-info h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* India Travel Page Styles */
.india-intro {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.india-intro h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.india-gallery {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    margin: 2rem 0;
    border-radius: 20px;
}

.india-gallery h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-overlay p {
    margin: 0;
    font-size: 1rem;
}

.spiritual-destinations {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.spiritual-destinations h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.destination-card {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-3px);
}

.destination-card h3 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.destination-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.travel-experience {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    margin: 2rem 0;
    border-radius: 20px;
}

.travel-experience h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.experience-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.experience-text h3 {
    color: #8b4513;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.experience-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.experience-features h4 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.experience-features ul {
    list-style: none;
    padding: 0;
}

.experience-features li {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.experience-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.experience-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.spiritual-transformation {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.spiritual-transformation h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.transformation-content {
    max-width: 800px;
    margin: 0 auto;
}

.transformation-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.transformation-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit:hover {
    transform: translateY(-3px);
}

.benefit h4 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.travel-info {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    margin: 2rem 0;
    border-radius: 20px;
}

.travel-info h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.info-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #8b4513;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-card h3 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.travel-contact {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.travel-contact h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.contact-details h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

/* Responsive adjustments for about me and india pages */
@media (max-width: 768px) {
    .story-content,
    .beliefs-content,
    .mission-content,
    .experience-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .experience-images {
        grid-template-columns: 1fr;
    }
    
    .philosophy-grid,
    .practices-grid,
    .destinations-grid,
    .transformation-benefits,
    .info-content {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .personal-story h2,
    .teaching-philosophy h2,
    .spiritual-beliefs h2,
    .special-practices h2,
    .personal-mission h2,
    .contact-invitation h2,
    .india-intro h2,
    .india-gallery h2,
    .spiritual-destinations h2,
    .travel-experience h2,
    .spiritual-transformation h2,
    .travel-info h2,
    .travel-contact h2 {
        font-size: 1.8rem;
    }
}

/* Courses Page Styles */
.course-overview {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.course-overview h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.overview-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.course-types {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    margin: 2rem 0;
    border-radius: 20px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.course-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-card h3 {
    color: #8b4513;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.course-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.course-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.course-features li {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.course-features li:last-child {
    border-bottom: none;
}

.course-info {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 1rem;
    border-radius: 10px;
    border-left: 5px solid #8b4513;
}

.course-info p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.special-programs {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.special-programs h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.programs-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.program-card {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-3px);
}

.program-card h3 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.program-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.program-features h4 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.program-features ul {
    list-style: none;
    padding: 0;
}

.program-features li {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.course-schedule {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    margin: 2rem 0;
    border-radius: 20px;
}

.course-schedule h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.schedule-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.schedule-info h3 {
    color: #8b4513;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.schedule-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.schedule-item h4 {
    color: #8b4513;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.schedule-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.schedule-note {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #8b4513;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.schedule-note h4 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.schedule-note ul {
    list-style: none;
    padding: 0;
}

.schedule-note li {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.pricing {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.pricing-note {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.pricing-note p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-3px);
}

.pricing-card h3 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 1rem;
}

.pricing-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.pricing-info {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #8b4513;
}

.pricing-info h4 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.pricing-info ul {
    list-style: none;
    padding: 0;
}

.pricing-info li {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.registration {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    margin: 2rem 0;
    border-radius: 20px;
}

.registration h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.registration-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.registration-info h3 {
    color: #8b4513;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.registration-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.step {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step h4 {
    color: #8b4513;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.contact-info {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #8b4513;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Responsive adjustments for courses page */
@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .programs-content {
        grid-template-columns: 1fr;
    }
    
    .schedule-content,
    .registration-content {
        grid-template-columns: 1fr;
    }
    
    .schedule-grid,
    .registration-steps {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .course-overview h2,
    .special-programs h2,
    .course-schedule h2,
    .pricing h2,
    .registration h2 {
        font-size: 1.8rem;
    }
}

/* World Yoga Day Page Styles */
.world-yoga-intro {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.world-yoga-intro h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.special-events {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    margin: 2rem 0;
    border-radius: 20px;
}

.special-events h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.event-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-card h3 {
    color: #8b4513;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.event-time {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.event-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.event-features li {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.event-features li:last-child {
    border-bottom: none;
}

.community-spirit {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.community-spirit h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.community-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.community-text h3 {
    color: #8b4513;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.community-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.community-benefits h4 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.community-benefits ul {
    list-style: none;
    padding: 0;
}

.community-benefits li {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.community-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.special-offers {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    margin: 2rem 0;
    border-radius: 20px;
}

.special-offers h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.offers-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.offer-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-3px);
}

.offer-card h3 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.offer-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.registration-info {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.registration-info h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.registration-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.registration-details h3 {
    color: #8b4513;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.registration-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.step {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step h4 {
    color: #8b4513;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.contact-info {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #8b4513;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.global-connection {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    margin: 2rem 0;
    border-radius: 20px;
}

.global-connection h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.global-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.global-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-item h4 {
    color: #8b4513;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.stat-item p {
    font-size: 1rem;
    margin: 0;
}

/* Children Yoga Page Styles */
.children-intro {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.children-intro h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.age-groups {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    margin: 2rem 0;
    border-radius: 20px;
}

.age-groups h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.age-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.age-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.age-card:hover {
    transform: translateY(-5px);
}

.age-card h3 {
    color: #8b4513;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.age-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.age-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.age-features li {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.age-features li:last-child {
    border-bottom: none;
}

.age-info {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 1rem;
    border-radius: 10px;
    border-left: 5px solid #8b4513;
}

.age-info p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.mitmachtheater {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mitmachtheater h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.theater-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.theater-text h3 {
    color: #8b4513;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.theater-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.theater-benefits h4 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.theater-benefits ul {
    list-style: none;
    padding: 0;
}

.theater-benefits li {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.theater-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.activities {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    margin: 2rem 0;
    border-radius: 20px;
}

.activities h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.activity-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-3px);
}

.activity-card h3 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.activity-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.activity-examples h4 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.activity-examples ul {
    list-style: none;
    padding: 0;
}

.activity-examples li {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.benefits {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.benefits-content {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
}

.benefit-item h4 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-item ul {
    list-style: none;
    padding: 0;
}

.benefit-item li {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.schedule-pricing {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    margin: 2rem 0;
    border-radius: 20px;
}

.schedule-pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.schedule-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.schedule-info h3 {
    color: #8b4513;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.schedule-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.schedule-item h4 {
    color: #8b4513;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.schedule-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.pricing-info {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #8b4513;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pricing-info h3 {
    color: #8b4513;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-item {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pricing-item h4 {
    color: #8b4513;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.pricing-item p {
    font-size: 0.9rem;
    margin: 0;
}

.special-offers {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 5px solid #8b4513;
}

.special-offers h4 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.special-offers ul {
    list-style: none;
    padding: 0;
}

.special-offers li {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Health Programs Page Styles */
.health-intro {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.health-intro h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.health-programs {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    margin: 2rem 0;
    border-radius: 20px;
}

.health-programs h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.program-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-card h3 {
    color: #8b4513;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.program-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.program-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.program-features li {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.program-features li:last-child {
    border-bottom: none;
}

.program-info {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 1rem;
    border-radius: 10px;
    border-left: 5px solid #8b4513;
}

.program-info p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.therapeutic-approach {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.therapeutic-approach h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.approach-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.approach-text h3 {
    color: #8b4513;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.approach-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.approach-principles h4 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.approach-principles ul {
    list-style: none;
    padding: 0;
}

.approach-principles li {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.approach-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.health-benefits {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    margin: 2rem 0;
    border-radius: 20px;
}

.health-benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.benefits-content {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-category {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-category:hover {
    transform: translateY(-3px);
}

.benefit-category h3 {
    color: #8b4513;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.benefit-category ul {
    list-style: none;
    padding: 0;
}

.benefit-category li {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.insurance-coverage {
    padding: 4rem 0;
    background: #fff;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.insurance-coverage h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.insurance-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.insurance-info h3 {
    color: #8b4513;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.insurance-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.insurance-details h4 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.insurance-details ul {
    list-style: none;
    padding: 0;
}

.insurance-details li {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.insurance-process h3 {
    color: #8b4513;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.step {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step h4 {
    color: #8b4513;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.health-schedule {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    margin: 2rem 0;
    border-radius: 20px;
}

.health-schedule h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.schedule-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.schedule-info h3 {
    color: #8b4513;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.schedule-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.schedule-item h4 {
    color: #8b4513;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.schedule-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.pricing-info {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #8b4513;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pricing-info h3 {
    color: #8b4513;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-item {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pricing-item h4 {
    color: #8b4513;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.pricing-item p {
    font-size: 0.9rem;
    margin: 0;
}

.special-offers {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 5px solid #8b4513;
}

.special-offers h4 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.special-offers ul {
    list-style: none;
    padding: 0;
}

.special-offers li {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive adjustments for all new pages */
@media (max-width: 768px) {
    .events-grid,
    .age-grid,
    .activities-grid,
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .community-content,
    .theater-content,
    .approach-content,
    .insurance-content,
    .schedule-content,
    .registration-content {
        grid-template-columns: 1fr;
    }
    
    .offers-content,
    .benefits-grid,
    .benefit-category,
    .global-stats,
    .registration-steps,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .schedule-grid,
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .world-yoga-intro h2,
    .special-events h2,
    .community-spirit h2,
    .special-offers h2,
    .registration-info h2,
    .global-connection h2,
    .children-intro h2,
    .age-groups h2,
    .mitmachtheater h2,
    .activities h2,
    .benefits h2,
    .schedule-pricing h2,
    .health-intro h2,
    .health-programs h2,
    .therapeutic-approach h2,
    .health-benefits h2,
    .insurance-coverage h2,
    .health-schedule h2 {
        font-size: 1.8rem;
    }
}

/* 404 Error Page Styles */
.error-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.error-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.error-image {
    text-align: center;
}

.error-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
}

.error-text {
    text-align: center;
}

.error-text h1 {
    font-size: 8rem;
    font-weight: 700;
    color: #8b4513;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.error-text h2 {
    font-size: 2.5rem;
    color: #8b4513;
    margin: 1rem 0;
    font-weight: 600;
}

.error-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-quote {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border-left: 5px solid #8b4513;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.error-quote blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #8b4513;
    margin: 0;
    line-height: 1.6;
}

.error-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #8b4513;
    border: 2px solid #8b4513;
}

.btn-secondary:hover {
    background: #8b4513;
    color: white;
    transform: translateY(-2px);
}

.popular-pages {
    padding: 4rem 0;
    background: #fff;
}

.popular-pages h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.page-card {
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.page-card:hover {
    transform: translateY(-5px);
}

.page-card h3 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.page-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #666;
}

.page-link {
    color: #8b4513;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.page-link:hover {
    color: #a0522d;
}

.contact-info {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
}

.contact-info h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #666;
}

.contact-details {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #8b4513;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-details p {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: #8b4513;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive adjustments for 404 page */
@media (max-width: 768px) {
    .error-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .error-text h1 {
        font-size: 6rem;
    }
    
    .error-text h2 {
        font-size: 2rem;
    }
    
    .error-img {
        width: 150px;
        height: 150px;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
    }
    
    .pages-grid {
        grid-template-columns: 1fr;
    }
    
    .popular-pages h2,
    .contact-info h2 {
        font-size: 1.8rem;
    }
}

/* Contact Form Styles */
.contact-form {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f4f1eb 0%, #e8dcc6 100%);
    margin: 2rem 0;
    border-radius: 20px;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
    font-size: 2.2rem;
}

.form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #8b4513;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8dcc6;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Source Sans Pro', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 2px;
}

.checkbox-label a {
    color: #8b4513;
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: #a0522d;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-messages {
    margin-top: 2rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.form-messages.success {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4caf50;
    color: #2e7d32;
}

.form-messages.error {
    background: rgba(244, 67, 54, 0.1);
    border: 2px solid #f44336;
    color: #c62828;
}

.message-content {
    font-weight: 600;
}

/* Form validation styles */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #f44336;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #4caf50;
}

/* Loading state */
.form.loading .btn-submit {
    background: #ccc;
    cursor: not-allowed;
}

.form.loading .btn-submit::after {
    content: " ...";
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0%, 20% { content: " ..."; }
    40% { content: " ...."; }
    60% { content: " ....."; }
    80%, 100% { content: " ......"; }
}

/* Responsive form styles */
@media (max-width: 768px) {
    .contact-form {
        padding: 2rem 0;
        margin: 1rem 0;
    }
    
    .contact-form h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .form {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .btn-submit {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
