.case-study {
    max-width: 1200px;
    margin: 0 auto;
}

.case-study .case-logo {
    width: 200px;
    height: 120px;
    margin-bottom: 2rem;
    margin-left: 0;
}

.case-content-card {
    background: rgba(214, 255, 13, 0.02);
    border: 1px solid rgba(214, 255, 13, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.case-content-card:hover {
    background: rgba(214, 255, 13, 0.05);
    border-color: #D6FF0D;
}

.tech-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(214, 255, 13, 0.02);
    border: 1px solid rgba(214, 255, 13, 0.1);
    color: #D6FF0D;
    border-radius: 20px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(214, 255, 13, 0.05);
    border-color: #D6FF0D;
    transform: translateY(-2px);
} 