.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
}

.service-icon.web {
    background: rgba(104, 96, 226, 0.1);
    color: rgb(104, 96, 226);
}

.service-icon.app {
    background: rgba(5, 186, 214, 0.1);
    color: rgb(5, 186, 214);
}

.service-icon.design {
    background: rgba(168 85 247 / 0.1);
    color: rgb(168, 85, 247);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6b7280;
    line-height: 1.7;
    word-break: keep-all;
}


/* 반응형 */
@media (max-width: 768px) {
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}