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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #8a8a8a;
    background-color: #000;
}

button {
    font: inherit;
}

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

header {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    color: #fff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-icon {
    width: 58px;
    height: 58px;
    object-fit: contain;
    filter: invert(1) sepia(18%) saturate(1248%) hue-rotate(336deg) brightness(88%) contrast(95%);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 14px;
    font-weight: normal;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 18px;
    align-items: center;
}

.nav-menu li a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
    text-transform: capitalize;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #fff;
}

.lang-switcher {
    display: flex;
}

.lang-toggle {
    background: transparent;
    border: 2px solid #2a2a2a;
    color: #7a7a7a;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 10;
}

.lang-toggle:hover {
    border-color: #b8764d;
}

.lang-toggle:active {
    transform: scale(0.95);
}

.lang-option {
    background: transparent;
    border: 0;
    color: inherit;
    font: inherit;
    padding: 0;
    transition: color 0.3s ease;
    cursor: pointer;
}

.lang-option.active {
    color: #b8764d;
}

.lang-divider {
    pointer-events: none;
}

.lang-divider {
    color: #2a2a2a;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #2f2f2f;
    border-radius: 10px;
    background: transparent;
    color: #ddd;
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.nav-toggle:hover {
    border-color: #b8764d;
    color: #fff;
}

.nav-toggle-line {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-btn {
    background: #b8764d;
    color: #ddd;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-btn:hover {
    background: #c9865e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 118, 77, 0.4);
}

.cookie-banner {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 2000;
    width: min(440px, calc(100vw - 32px));
    background: rgba(12, 12, 12, 0.97);
    border: 1px solid #2f2f2f;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    padding: 24px;
}

.cookie-banner__title {
    color: #f2eee9;
    font-size: 24px;
    margin-bottom: 10px;
}

.cookie-banner__text {
    color: #b4b4b4;
    font-size: 15px;
    line-height: 1.7;
}

.cookie-banner__link {
    display: inline-block;
    margin-top: 12px;
    color: #b8764d;
    text-decoration: none;
}

.cookie-banner__link:hover {
    color: #d39a75;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.cookie-button {
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    min-height: 44px;
    padding: 12px 18px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cookie-button--primary {
    background: #b8764d;
    color: #f2eee9;
}

.cookie-button--primary:hover {
    background: #c9865e;
    transform: translateY(-1px);
}

.cookie-button--secondary {
    background: transparent;
    border: 1px solid #444;
    color: #d3d3d3;
}

.cookie-button--secondary:hover {
    background: #1d1d1d;
}

.cookie-settings {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 1900;
    border: 1px solid #393939;
    border-radius: 999px;
    background: rgba(15, 15, 15, 0.95);
    color: #d7d7d7;
    cursor: pointer;
    min-height: 44px;
    padding: 10px 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cookie-settings.cookie-settings--visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.cookie-settings:hover {
    border-color: #b8764d;
    color: #fff;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23111" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 70px;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease;
    color: #aaa;
}

.hero h2 {
    font-size: 36px;
    color: #b8764d;
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    padding: 80px 0;
    background: #0a0a0a;
}

section:nth-child(even) {
    background: #1a1a1a;
}

.about {
    background: #0a0a0a;
}

.about h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
    color: #b8764d;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #7a7a7a;
}

.about-content p {
    margin-top: 20px;
}

.about-content p:first-child {
    margin-top: 0;
}

.team-section {
    margin-top: 80px;
}

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

.team-card {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
}

.team-initial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #b8764d;
    color: #f3ede8;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 18px;
}

.team-card h3 {
    color: #ddd;
    font-size: 22px;
    font-weight: bold;
}

.motto {
    background: #b8764d;
    color: #ddd;
    padding: 30px;
    margin: 30px 0;
    border-radius: 10px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
}

.courses {
    background: #1a1a1a;
    color: #fff;
}

.courses h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #b8764d;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.course-card {
    background: #0f0f0f;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #2a2a2a;
}

.course-card:hover {
    transform: translateY(-10px);
    border-color: #b8764d;
    box-shadow: 0 10px 30px rgba(184, 118, 77, 0.3);
}

.course-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #b8764d;
    text-transform: uppercase;
}

.course-card p {
    font-size: 18px;
    color: #6a6a6a;
}

.philosophy {
    background: #1a1a1a;
    text-align: center;
}

.philosophy h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #b8764d;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.philosophy-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.8;
    font-style: italic;
    color: #7a7a7a;
    padding: 40px;
    background: #0f0f0f;
    border-radius: 10px;
    border-left: 5px solid #b8764d;
}

.cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    color: #fff;
    text-align: center;
}

.cta h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #b8764d;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #7a7a7a;
}

.cta-button {
    display: inline-block;
    background: #b8764d;
    color: #ddd;
    padding: 20px 50px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-button:hover {
    background: #c9865e;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(184, 118, 77, 0.5);
}

footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

footer p {
    font-size: 14px;
    color: #555;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.footer-links a {
    color: #8a8a8a;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #b8764d;
}

hr {
    border: none;
    border-top: 2px solid #333;
    margin: 60px auto;
    max-width: 200px;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    padding: 150px 0 80px;
    text-align: center;
    margin-top: 70px;
}

.page-hero h1 {
    font-size: 48px;
    color: #b8764d;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Schedule Page */
.schedule {
    background: #0a0a0a;
    padding: 80px 0;
}

.schedule-table {
    overflow-x: visible;
    margin-bottom: 60px;
}

.mobile-schedule {
    display: none;
}

.schedule-table table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    background: #1a1a1a;
}

.schedule-table th {
    background: #b8764d;
    color: #ddd;
    padding: 15px;
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schedule-table td {
    padding: 20px;
    border: 1px solid #2a2a2a;
    vertical-align: top;
}

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

.mobile-day-label {
    display: none;
}

.class-item .time {
    font-size: 14px;
    color: #b8764d;
    margin-bottom: 8px;
    font-weight: bold;
}

.class-item .class-name {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 5px;
}

.class-item .location {
    font-size: 13px;
    color: #666;
}

.locations h2 {
    font-size: 36px;
    color: #b8764d;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.location-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #2a2a2a;
}

.location-card h3 {
    font-size: 24px;
    color: #b8764d;
    margin-bottom: 10px;
}

.location-card h4 {
    font-size: 20px;
    color: #aaa;
    margin-bottom: 15px;
}

.location-card p {
    color: #7a7a7a;
    font-size: 16px;
    line-height: 1.6;
}

.booking-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.booking-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 18px;
    border-radius: 6px;
    background: transparent;
    border: 1px solid #4a4a4a;
    color: #d7d7d7;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.4px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.booking-link:hover {
    background: #c9865e;
    border-color: #c9865e;
    color: #f2eee9;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(184, 118, 77, 0.3);
}

.booking-link-secondary {
    background: transparent;
    border: 1px solid #4a4a4a;
    color: #d7d7d7;
}

.booking-link-secondary:hover {
    background: #c9865e;
    border-color: #c9865e;
    color: #f2eee9;
}

/* Pricing Page */
.pricing {
    background: #0a0a0a;
    padding: 80px 0;
}

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

.pricing-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    border: 2px solid #2a2a2a;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.pricing-card.featured {
    border-color: #b8764d;
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #b8764d;
    box-shadow: 0 15px 40px rgba(184, 118, 77, 0.3);
}

.pricing-card:hover .price-detail {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card h3 {
    font-size: 32px;
    color: #b8764d;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.pricing-subtitle {
    text-align: center;
    color: #7a7a7a;
    font-size: 16px;
    margin-bottom: 20px;
}

.pricing-card hr {
    border: none;
    border-top: 1px solid #333;
    margin: 20px 0;
}

.membership-price {
    text-align: center;
    margin: 24px 0 10px;
}

.membership-price-detail {
    display: block;
    color: #7a7a7a;
    font-size: 16px;
    margin-top: 6px;
}

.membership-feature {
    color: #aaa;
    font-size: 18px;
    text-align: center;
    padding: 14px 0;
    border-bottom: 1px solid #2a2a2a;
}

.membership-feature:last-child {
    border-bottom: none;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #2a2a2a;
}

.price-item:last-child {
    border-bottom: none;
}

.frequency {
    color: #aaa;
    font-size: 18px;
}

.price {
    color: #b8764d;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
}

.price-detail {
    font-size: 12px;
    color: #666;
    font-weight: normal;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.savings-badge {
    background: #b8764d;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 12px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flexible-options {
    text-align: center;
    margin-top: 80px;
}

.flexible-options h2 {
    font-size: 36px;
    color: #b8764d;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.flexible-options > p {
    color: #7a7a7a;
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.card-option {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    border: 2px solid #2a2a2a;
    transition: all 0.3s ease;
}

.card-option:hover {
    transform: translateY(-8px);
    border-color: #b8764d;
    box-shadow: 0 15px 40px rgba(184, 118, 77, 0.2);
}

.card-option h3 {
    font-size: 28px;
    color: #b8764d;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.card-subtitle {
    color: #7a7a7a;
    font-size: 16px;
    margin-bottom: 20px;
}

.card-option hr {
    border: none;
    border-top: 1px solid #333;
    margin: 20px 0;
}

.card-price {
    text-align: center;
}

.price-large {
    display: block;
    font-size: 48px;
    color: #b8764d;
    font-weight: bold;
    margin-bottom: 10px;
}

.price-per {
    color: #7a7a7a;
    font-size: 14px;
}

/* FAQ Page */
.faq {
    background: #0a0a0a;
    padding: 80px 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a1a;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    border-left: 4px solid #b8764d;
}

.faq-item h3 {
    font-size: 22px;
    color: #b8764d;
    margin-bottom: 15px;
}

.faq-item p {
    color: #7a7a7a;
    font-size: 16px;
    line-height: 1.8;
}

.equipment-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.equipment-list li {
    color: #7a7a7a;
    font-size: 16px;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.equipment-list li:before {
    content: "•";
    color: #b8764d;
    font-size: 20px;
    position: absolute;
    left: 0;
}

.faq-contact {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: #1a1a1a;
    border-radius: 10px;
}

.faq-contact p {
    color: #aaa;
    font-size: 18px;
    margin-bottom: 15px;
}

.faq-contact a {
    color: #b8764d;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-contact a:hover {
    color: #c9865e;
}

.contact-page {
    background: #0a0a0a;
    padding: 80px 0;
}

.contact-shell {
    max-width: 1040px;
    margin: 0 auto;
}

.contact-intro {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.contact-intro h2 {
    font-size: 34px;
    color: #b8764d;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-intro p {
    color: #8a8a8a;
    font-size: 18px;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.contact-card {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 32px 28px;
    min-height: 100%;
}

.contact-card h3 {
    color: #f2f2f2;
    font-size: 24px;
    margin-bottom: 14px;
}

.contact-card p {
    color: #8a8a8a;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #f2f2f2;
    background: #b8764d;
    text-decoration: none;
    font-weight: bold;
    border-radius: 999px;
    padding: 14px 20px;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.contact-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.contact-link:hover {
    background: #c9865e;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(184, 118, 77, 0.28);
}

.contact-link svg {
    width: 14px;
    height: 14px;
    display: block;
}

.contact-note {
    margin-top: 36px;
    background: #141414;
    border: 1px solid #2a2a2a;
    border-left: 4px solid #b8764d;
    border-radius: 14px;
    padding: 26px 28px;
}

.contact-note h3 {
    color: #b8764d;
    font-size: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-note p {
    color: #8a8a8a;
    margin-bottom: 18px;
    line-height: 1.8;
}

.contact-note a {
    color: #b8764d;
    text-decoration: none;
    font-weight: bold;
}

.contact-note a:hover {
    color: #c9865e;
}

/* Impressum Page */
.impressum {
    background: #0a0a0a;
    padding: 80px 0;
}

.impressum-content {
    max-width: 900px;
    margin: 0 auto;
    color: #7a7a7a;
}

.impressum-content h2 {
    font-size: 32px;
    color: #b8764d;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.impressum-content h3 {
    font-size: 24px;
    color: #b8764d;
    margin-top: 40px;
    margin-bottom: 15px;
}

.impressum-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.impressum-content a {
    color: #b8764d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.impressum-content a:hover {
    color: #c9865e;
}

.impressum-content .source {
    margin-top: 40px;
    font-size: 14px;
    color: #666;
}

.legal-page {
    background: #0a0a0a;
    padding: 80px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    color: #7a7a7a;
}

.legal-content h2 {
    font-size: 30px;
    color: #b8764d;
    margin-top: 40px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 22px;
    color: #ddd;
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content p,
.legal-content li {
    font-size: 16px;
    line-height: 1.8;
}

.legal-content p {
    margin-bottom: 14px;
}

.legal-content ul {
    margin: 0 0 18px 20px;
}

.legal-note {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-left: 4px solid #b8764d;
    border-radius: 10px;
    padding: 22px;
    margin-top: 24px;
}

.legal-form {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 32px;
    margin-top: 30px;
}

.legal-form p {
    margin-bottom: 18px;
}

.legal-form-line {
    display: block;
    width: 100%;
    height: 1px;
    background: #3a3a3a;
    margin-top: 10px;
}

@media (max-width: 768px) {
    header {
        padding: 14px 0;
    }

    nav {
        gap: 12px;
        flex-wrap: wrap;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .about h2,
    .courses h2,
    .philosophy h2,
    .cta h2 {
        font-size: 32px;
    }

    .course-grid {
        grid-template-columns: 1fr;
    }

    .motto {
        font-size: 18px;
    }

    .philosophy-text {
        font-size: 16px;
        padding: 20px;
    }

    .logo-text {
        font-size: 14px;
    }

    .logo {
        gap: 10px;
        min-width: 0;
    }

    .logo-icon {
        width: 44px;
        height: 44px;
    }

    .logo-main {
        font-size: 16px;
        letter-spacing: 1.5px;
    }

    .logo-sub {
        font-size: 11px;
        letter-spacing: 0.8px;
    }

    .lang-switcher {
        order: 2;
        margin-left: auto;
    }

    .lang-toggle {
        padding: 7px 12px;
    }

    .nav-toggle {
        display: inline-flex;
        order: 3;
        margin-left: 0;
    }

    .nav-menu {
        display: none;
        order: 4;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        background: rgba(12, 12, 12, 0.98);
        border: 1px solid #2a2a2a;
        border-radius: 14px;
        padding: 14px;
        margin-top: 8px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
    }

    .nav-menu li a {
        display: block;
        padding: 10px 12px;
        border-radius: 8px;
        background: #121212;
        font-size: 14px;
    }

    nav.nav-open .nav-menu {
        display: flex;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .cta-button {
        padding: 16px 22px;
        font-size: 16px;
        letter-spacing: 1px;
        white-space: nowrap;
    }

    .cookie-banner {
        right: 16px;
        bottom: 16px;
        left: 16px;
        width: auto;
    }

    .cookie-settings {
        left: 16px;
        bottom: 16px;
    }

    .schedule-table {
        display: none;
    }

    .mobile-schedule {
        display: grid;
        gap: 16px;
        margin-bottom: 40px;
    }

    .mobile-day-card {
        background: #161616;
        border: 1px solid #2a2a2a;
        border-left: 4px solid #b8764d;
        border-radius: 14px;
        padding: 18px;
    }

    .mobile-day-card h3 {
        color: #f0f0f0;
        font-size: 18px;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 14px;
    }

    .mobile-class-entry + .mobile-class-entry {
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid #2a2a2a;
    }

    .mobile-class-entry .time {
        color: #b8764d;
        font-size: 15px;
        font-weight: bold;
        margin-bottom: 6px;
    }

    .mobile-class-entry .class-name {
        color: #d7d7d7;
        font-size: 17px;
        margin-bottom: 4px;
    }

    .mobile-class-entry .location {
        color: #8a8a8a;
        font-size: 14px;
    }

    .pricing-grid,
    .card-pricing {
        grid-template-columns: 1fr;
    }

    .footer-links {
        gap: 12px;
    }

    .legal-form {
        padding: 24px;
    }
}
