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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

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

.language-switcher {
    text-align: right;
    margin-bottom: 2rem;
}

.lang-btn {
    background: none;
    border: 1px solid #333;
    padding: 0.5rem 1rem;
    margin-left: 0.5rem;
    text-decoration: none;
    color: #333;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: inherit;
}

.lang-btn:hover {
    background-color: #333;
    color: white;
}

.lang-btn.active {
    background-color: #333;
    color: white;
}

.header {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 2rem;
}

.dojo-name {
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

.content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.section {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    border-left: 3px solid #333;
    padding-left: 1rem;
}

.practice-details {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 5px;
    margin: 1rem 0;
}

.schedule-item {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-item {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.contact-label {
    font-weight: bold;
    min-width: 80px;
    color: #555;
}

.important-notice {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 5px;
    padding: 1rem;
    margin: 2rem 0;
    text-align: center;
}

.important-notice strong {
    color: #856404;
}

.dojo-image {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin: 1rem auto;
    display: block;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.practice-image {
    width: 100%;
    max-width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin: 1rem 0;
    float: right;
    margin-left: 1rem;
}

.meditation-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
    opacity: 0.7;
}

.footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.9rem;
}

.hidden {
    display: none;
}

@media (max-width: 768px) {
    .content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .container {
        padding: 1rem;
    }
    
    .dojo-name {
        font-size: 2rem;
    }
}