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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 18px;
}

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

/* Header */
header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #d32f2f;
}

.lang-switcher {
    display: flex;
    gap: 15px;
}

.lang-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s;
}

.lang-btn:hover {
    background: #f5f5f5;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 140px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero .subtitle {
    font-size: 24px;
    color: #666;
    margin-bottom: 40px;
}

.cta-button {
    background: #d32f2f;
    color: white;
    padding: 20px 40px;
    font-size: 22px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.cta-button:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

.trust-badges {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #666;
}

.badge-icon {
    width: 24px;
    height: 24px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

/* Sections */
section {
    padding: 80px 0;
}

h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

/* Why Japan */
.why-japan {
    background: #fff;
}

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

.stat-card {
    text-align: center;
    padding: 40px;
    background: #f8f8f8;
    border-radius: 10px;
    transition: transform 0.3s;
}

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

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #d32f2f;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 20px;
    color: #666;
}

/* Process */
.process {
    background: #f5f5f5;
}

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

.step {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #d32f2f;
    color: white;
    font-size: 36px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.step p {
    font-size: 18px;
    color: #666;
}

/* What's Included */
.included {
    background: #fff;
}

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

.included-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.included-icon {
    width: 50px;
    height: 50px;
    background: #e3f2fd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
}

.included-text h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.included-text p {
    font-size: 18px;
    color: #666;
}

/* Contact Section */
.contact {
    background: #f5f5f5;
    text-align: center;
}

.contact-info {
    font-size: 20px;
    color: #666;
}

.contact-info p {
    margin: 15px 0;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 40px 0;
    font-size: 16px;
}

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

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-links a {
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background-color: #d32f2f;
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero .subtitle {
        font-size: 20px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 20px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 18px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .process-steps,
    .stats-grid,
    .included-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}