.Header__welcomeTitle {
  margin-bottom: 0; 
}

.jsc-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
    margin: 0 auto;
}

.jsc-grid-item {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(230, 230, 230);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.jsc-grid-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.jsc-item-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.jsc-icon {
    width: 40px;
    height: 40px;
    background-color: rgb(235, 245, 255);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: rgb(50, 100, 200);
}

.jsc-title {
    margin: 0;
    color: rgb(51, 51, 51);
    font-weight: bold;
}

.jsc-description {
    margin: 0;
    color: rgb(102, 102, 102);
    line-height: 1.4;
}
