/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'SF Pro Display', 'Inter', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: #1d1d1f;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1em;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Training Environment Gallery Styles */
.training-environment-gallery {
    margin: 32px 0;
    text-align: center;
}

.gallery-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 24px;
}

.training-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.training-image-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.training-image-item:hover {
    transform: translateY(-2px);
}

.training-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.training-img:hover {
    transform: scale(1.05);
}

.training-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px 16px 16px;
    font-size: 0.9rem;
    font-weight: 500;
}

.gallery-caption {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    line-height: 1.4;
    margin-top: 16px;
}

/* Performance Factors Styles */
.performance-factors {
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .performance-factors {
        grid-template-columns: 1fr;
    }
}

.factor-item {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.factor-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.factor-item:first-child {
    border-left: 4px solid #1e50a2;
}

.factor-item:nth-child(2) {
    border-left: 4px solid #28a745;
}

.factor-item:nth-child(3) {
    border-left: 4px solid #ffc107;
}

.factor-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.factor-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.factor-text {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* International Section Styles */
.international-section {
    margin: 40px 0;
    padding: 24px;
    background: linear-gradient(135deg, #1e50a2 0%, #2563eb 100%);
    border-radius: 16px;
    color: white;
    text-align: center;
}

.international-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.international-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.international-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.detail-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.detail-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.detail-item p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* Brand Exposure Section Styles */
.brand-exposure-section {
    margin: 60px 0;
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
}

.brand-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
    text-align: center;
}

.brand-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 40px;
}

.exposure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .exposure-grid {
        grid-template-columns: 1fr;
    }
}

.exposure-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exposure-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.exposure-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.exposure-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 20px;
}

/* Media Card Styles */
.media-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.media-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    font-weight: 500;
}

.media-logo {
    font-size: 1.2rem;
}

.media-note {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    margin: 0;
}

/* Social Card Styles */
.social-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.social-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    color: #1d1d1f;
    border: 1px solid #e9ecef;
}

.social-platform {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #6c757d;
}

.social-count {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1d1d1f;
}

.social-label {
    font-size: 0.8rem;
    color: #6c757d;
}

.social-strategy {
    margin-top: 20px;
    text-align: left;
}

.strategy-point {
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 3px solid #28a745;
}

.strategy-point h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 6px;
}

.strategy-point p {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

/* Attention Card Styles */
.attention-content {
    text-align: left;
}

.attention-point {
    margin-bottom: 20px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1e50a2;
}

.attention-point h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.attention-point p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.attention-note {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    text-align: center;
    padding: 12px;
    background: #e9ecef;
    border-radius: 8px;
    margin: 0;
}

/* Brand Images Styles */
.brand-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.brand-image-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.brand-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.brand-img:hover {
    transform: scale(1.05);
}

/* Class Change Impact Styles */
.class-change-impact {
    margin: 32px 0;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #e9ecef;
}

.impact-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 20px;
    text-align: center;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.impact-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-2px);
}

.impact-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.impact-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.impact-item p {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

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

.section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #86868b;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(30, 80, 162, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin-top: -4px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    color: white;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1e50a2;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(30, 80, 162, 0.3) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: left;
    color: white;
    max-width: 900px;
    padding: 60px 40px;
    z-index: 1;
}

.hero-title {
    font-family: 'SF Pro Display', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
    font-size: clamp(3rem, 7vw, 4.8rem);
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.5),
        0 2px 6px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease-out 0.3s forwards;
}

.hero-title .emphasis {
    color: white;
    font-size: 0.85em;
    font-weight: 400;
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.5),
        0 2px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin: 24px 0 32px 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    text-align: center;
}

.hero-credentials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.credential {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 14px 28px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
}

.cta-button.primary {
    background: #1e50a2;
    color: white;
    border-color: #1e50a2;
}

.cta-button.primary:hover {
    background: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 113, 227, 0.3);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-10px) rotate(45deg); }
    60% { transform: translateY(-5px) rotate(45deg); }
}

/* Profile Section */
.profile {
    background: #f5f5f7;
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.profile-images-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.profile-image-main,
.profile-image-secondary {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.02);
}

.profile-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.profile-name {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
}

.profile-name-en {
    font-size: 1rem;
    font-weight: 400;
    color: #86868b;
    margin-top: 4px;
}

.profile-details {
    margin-bottom: 32px;
}

.detail-item {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #d2d2d7;
}

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

.detail-label {
    font-weight: 500;
    color: #86868b;
    min-width: 120px;
    font-size: 0.9rem;
}

.detail-value {
    font-weight: 400;
    color: #1d1d1f;
    flex: 1;
}

.story-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: #1d1d1f;
}

.story-text {
    color: #515154;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Achievements Section */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.achievement-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.achievement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.achievement-card.featured {
    background: linear-gradient(135deg, #1e50a2, #2563eb);
    color: white;
    grid-column: span 2;
}

.achievement-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.achievement-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.achievement-detail {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #1e50a2;
}

.achievement-card.featured .achievement-detail {
    color: rgba(255, 255, 255, 0.9);
}

.achievement-description {
    font-size: 0.9rem;
    color: #86868b;
    line-height: 1.5;
}

.achievement-card.featured .achievement-description {
    color: rgba(255, 255, 255, 0.8);
}

.olympic-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.olympic-item {
    display: flex;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.olympic-item:hover {
    transform: translateY(-2px);
}

.olympic-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    flex-shrink: 0;
}

.olympic-info {
    padding: 24px;
    flex: 1;
}

.olympic-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.olympic-result {
    font-size: 0.9rem;
    color: #1e50a2;
    font-weight: 500;
    margin-bottom: 8px;
}

.olympic-description {
    font-size: 0.9rem;
    color: #86868b;
    line-height: 1.5;
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #1e50a2, #e9ecef);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 80px;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e50a2, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    text-align: center;
    line-height: 1;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 12px rgba(30, 80, 162, 0.3);
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #1e50a2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.timeline-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
    line-height: 1.3;
}

.timeline-detail {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e50a2;
    margin-bottom: 8px;
}

.timeline-description {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-year {
        width: 40px;
        height: 40px;
        font-size: 0.7rem;
    }
}

.achievements-gallery {
    margin-top: 60px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 16px;
}

.gallery-title {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 32px;
    color: #1d1d1f;
}

.achievements-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .achievements-images {
        grid-template-columns: 1fr;
    }
}

.achievement-image-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-image-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.achievement-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px 16px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* Sport Section */
.sport {
    background: #f5f5f7;
}

.sport-content {
    max-width: 1000px;
    margin: 0 auto;
}

.sport-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.sport-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.sport-description {
    font-size: 1.1rem;
    color: #515154;
    line-height: 1.7;
    margin-bottom: 32px;
}

.sport-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    padding: 20px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #0071e3;
}

.feature-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d1d1f;
}

.feature-description {
    font-size: 0.9rem;
    color: #86868b;
    line-height: 1.5;
}

.sport-visual {
    position: relative;
}

.sport-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

.sport-image.secondary {
    margin-bottom: 0;
    opacity: 0.9;
    transform: scale(0.95);
}

.class-comparison {
    background: white;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    text-align: center;
    color: #1e50a2;
}

.comparison-table {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    min-height: 50px;
}

.comparison-row.header {
    background: linear-gradient(135deg, #1e50a2, #2563eb);
    color: white;
    font-weight: 600;
}

.comparison-row:nth-child(even):not(.header) {
    background: #f8f9fa;
}

.comparison-row:nth-child(odd):not(.header) {
    background: white;
}

.comparison-cell {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    border-right: 1px solid #e5e5e7;
    font-size: 0.9rem;
    line-height: 1.4;
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-row.header .comparison-cell {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.training-info {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.training-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    text-align: center;
}

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

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

.location-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1e50a2;
}

.location-description {
    color: #515154;
    line-height: 1.6;
}

/* Partnership Section */
.partnership {
    background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
}

.value-proposition {
    margin-bottom: 60px;
}

.value-header {
    text-align: center;
    margin-bottom: 40px;
}

.value-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.value-subtitle {
    font-size: 1.1rem;
    color: #86868b;
}

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

.value-card {
    background: white;
    padding: 28px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.value-card:hover {
    transform: translateY(-4px);
}

.value-card.primary {
    background: linear-gradient(135deg, #1e50a2, #2563eb);
    color: white;
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.value-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.value-card-text {
    font-size: 0.9rem;
    color: #86868b;
    line-height: 1.5;
}

.value-card.primary .value-card-text {
    color: rgba(255, 255, 255, 0.9);
}

.vision-alignment {
    background: white;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.alignment-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: #1e50a2;
}

.vision-introduction {
    background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 4px solid #0071e3;
}

.vision-intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1d1d1f;
    margin: 0;
    text-align: center;
}

.alignment-section {
    margin-bottom: 40px;
}

.alignment-header {
    margin-bottom: 24px;
    text-align: center;
}

.concept-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e50a2;
}

.concept-subtitle {
    color: #86868b;
    font-size: 1rem;
    margin: 0;
}

.alignment-details {
    display: grid;
    gap: 20px;
}

.detail-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e5e5e7;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.detail-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.detail-content {
    flex: 1;
}

.detail-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d1d1f;
}

.detail-text {
    color: #515154;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.vision-impact {
    background: linear-gradient(135deg, #1e50a2, #2563eb);
    color: white;
    padding: 32px;
    border-radius: 16px;
    margin-top: 40px;
}

.impact-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.impact-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #1e50a2;
    border-radius: 8px;
    padding: 8px;
    display: inline-block;
    min-width: 80px;
}

.impact-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.impact-description {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.4;
}

.sponsorship-packages {
    margin-bottom: 60px;
}

.packages-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 32px;
}

.packages-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.package-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    max-width: 500px;
    width: 100%;
}

.package-card.premium {
    background: linear-gradient(135deg, #1e50a2, #2563eb);
    color: white;
    border: none;
}

.package-header {
    margin-bottom: 24px;
}

.package-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.package-subtitle {
    font-size: 0.9rem;
    color: #86868b;
}

.package-card.premium .package-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature {
    padding: 12px 16px;
    background: #f5f5f7;
    border-radius: 8px;
    font-size: 0.9rem;
    position: relative;
    padding-left: 40px;
}

.package-card.premium .feature {
    background: rgba(255, 255, 255, 0.1);
}

.feature::before {
    content: '✓';
    position: absolute;
    left: 16px;
    color: #1e50a2;
    font-weight: bold;
}

.package-card.premium .feature::before {
    color: white;
}

.unique-value {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.unique-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 32px;
}

.unique-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.benefit-text {
    color: #515154;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
    background: #f5f5f7;
}

.gallery .section-title {
    color: #1d1d1f;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    flex: 0 1 auto;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    max-height: 200px;
    width: auto;
}

.gallery-item.large img {
    max-height: 300px;
}

.gallery-image {
    display: block;
    height: auto;
    width: auto;
    max-width: 100%;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    font-size: 1rem;
    font-weight: 500;
    color: white;
}

/* Contact Section */
.contact {
    background: #f5f5f7;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-text p {
    color: #515154;
    margin: 0;
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.contact-form {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #1d1d1f;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e50a2;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    width: 100%;
    padding: 14px;
    background: #1e50a2;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-button:hover:not(:disabled) {
    background: #0056b3;
    transform: translateY(-1px);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form validation styles */
.form-group input.error,
.form-group select.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group .required {
    color: #e74c3c;
    font-weight: normal;
}

.form-help {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #6c757d;
}

/* Form messages */
.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 0.95rem;
    text-align: center;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Honeypot field */
.hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Button loader animation */
.button-loader {
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e50a2 0%, #2563eb 100%);
    color: white;
    padding: 60px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.footer-subtitle {
    color: #a1a1a6;
    margin-bottom: 16px;
}

.footer-description {
    color: #a1a1a6;
    line-height: 1.6;
    max-width: 400px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-section-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-list a {
    color: #a1a1a6;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: white;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-link {
    color: #a1a1a6;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #1e50a2;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright,
.location {
    color: #a1a1a6;
    font-size: 0.8rem;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }