.wejajs-page-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

.wejajs-hero-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.wejajs-hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

.wejajs-content-section {
    padding: 80px 0;
}

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

.wejajs-content-card {
    padding: 32px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

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

.wejajs-content-card img {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    border-radius: 50%;
}

.wejajs-content-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.wejajs-content-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}

.wejajs-features-highlight {
    padding: 80px 0;
    background: #f8fafc;
}

.wejajs-highlight-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.wejajs-highlight-item {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.wejajs-highlight-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.wejajs-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    font-size: 24px;
    font-weight: 800;
    border-radius: 50%;
}

.wejajs-highlight-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.wejajs-highlight-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}

@media (max-width: 768px) {
    .wejajs-content-grid {
        grid-template-columns: 1fr;
    }
    
    .wejajs-highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .wejajs-number {
        margin: 0 auto;
    }
}
