body {
    --color-yellow: #FFC20F;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: #ffffff;
    color: #2b124c;
    line-height: 1.6;
}

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

header {
    background: linear-gradient(to bottom, #2b124c, #4c2a85, #ffffff);
    border-bottom: 1px solid #e5e7eb;
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

.hero-logo {
    width: 280px;
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    margin-bottom: 20px;
}

h1 {
    font-size: 64px;
    line-height: 1;
    margin-bottom: 32px;
    color: #ffffff;
}

.hero-text {
    font-size: 22px;
    color: #2b124c;
    max-width: 800px;
    margin-bottom: 36px;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.button {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

.button-dark {
    background: #2b124c;
    color: white;
}

.button-light {
    border: 1px solid #7c3aed;
    color: #2b124c;
}

section {
    padding: 80px 0;
}

.grid {
    display: grid;
    gap: 48px;
}

.two-columns {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card {
    background: #f4efff;
    border-radius: 28px;
    padding: 36px;
}

.dark-section {
    background: #2b124c;
    color: white;
}

h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

h3 {
    font-size: 28px;
    margin-bottom: 18px;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 15px;
    color: var(--color-yellow);
    margin-bottom: 12px;
    font-weight: 700;
}

footer {
    background: #f3f4f6;
    border-top: 1px solid #e5e7eb;
    padding: 60px 0;
}

ul, ol {
    padding-left: 24px;
}

li {
    margin-bottom: 12px;
}

a {
    color: inherit;
}

.training-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 36px;
}

.training-flex {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.training-info-column {
    flex: 1;
    min-width: 160px;
    margin-bottom: 10px;
}

.training-info-column > h3 {
    color: var(--color-yellow);
    margin-top: 0;
}

.training-info-column > p {
    margin: 4px 0;
}

.weight-600 {
    font-weight: 600;
}

.training-map-column {
    flex: 2;
    min-width: 200px;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.training-map-column iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 32px;
    }

    .hero-text {
        font-size: 18px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero-logo {
        width: 200px;
        margin: 0 auto;
        order: -1;
    }

    .buttons {
        justify-content: center;
    }
}