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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding-top: 3rem;
    padding-bottom: 1rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: #e94560;
    margin-bottom: 10px;
}

.hero .tagline {
    font-size: 1.2rem;
    color: #a0a0a0;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.about > .container > p {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.1rem;
    color: #555;
}

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

.benefit {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.for-men {
    background: linear-gradient(135deg, #e94560 0%, #c73e54 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
}

.for-men h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: white;
}

.for-men p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.95);
}

.for-men p:last-child {
    margin-bottom: 0;
}

.for-men strong {
    color: #fff;
    background-color: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 4px;
}

.positions-section {
    margin-top: 60px;
    text-align: center;
}

.positions-section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.positions-section > p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #555;
    font-size: 1.1rem;
}

.image-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.bjj-poster {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

@media (max-width: 768px) {
    .positions-section h3 {
        font-size: 1.5rem;
    }
    
    .image-container {
        padding: 10px;
    }
}

.benefit h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.benefit p {
    color: #666;
}

/* Top CTA Section */
.top-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding-bottom: 3rem;
    text-align: center;
}

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

.top-cta > .container > p {
    max-width: 600px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    color: #a0a0a0;
}

.top-cta .locations {
    font-size: 1.3rem;
    margin: 30px 0 !important;
    color: #e94560 !important;
}

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

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #e94560;
    color: white;
}

.btn-primary:hover {
    background-color: #c73e54;
    transform: translateY(-2px);
}

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

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

/* Footer */
footer {
    background-color: #0f0f1a;
    color: #a0a0a0;
    padding: 40px 0;
    text-align: center;
}

.contacts {
    margin: 20px 0;
}

.contacts a {
    color: #e94560;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
}

.contacts a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .about h2,
    .cta h2 {
        font-size: 1.8rem;
    }

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

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

    .btn {
        width: 100%;
        max-width: 300px;
    }
}
